Skip to content

Instantly share code, notes, and snippets.

@expiscornovus
Created March 29, 2021 20:56
Show Gist options
  • Save expiscornovus/c133979f7fcb583e9fac50bc0aeed8ec to your computer and use it in GitHub Desktop.
Save expiscornovus/c133979f7fcb583e9fac50bc0aeed8ec to your computer and use it in GitHub Desktop.
Create New Service Application Pools in SharePoint 2010
Import-CSV .\serviceapplicationpools.csv | ForEach-Object {
$serviceapplicationpool = $_.Name
$processaccountname = $_.ProcessAccountName
New-SPServiceApplicationPool -Name $serviceapplicationpool -Account $processaccountname
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment