Skip to content

Instantly share code, notes, and snippets.

@michaelbramwell
Created June 9, 2017 07:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michaelbramwell/8bfebef620fe761594d84ef7a226fe93 to your computer and use it in GitHub Desktop.
Save michaelbramwell/8bfebef620fe761594d84ef7a226fe93 to your computer and use it in GitHub Desktop.
Add Svc Account to App Pool via CMD
# from https://stackoverflow.com/a/26180529
%windir%\system32\inetsrv\appcmd.exe set config /section:applicationPools /[name='APP_POOL_NAME'].processModel.identityType:SpecificUser /[name='APP_POOL_NAME'].processModel.userName:DOMAIN\USER_NAME /[name='APP_POOL_NAME'].processModel.password:PASSWORD
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment