Created
September 4, 2015 16:55
-
-
Save tompazourek/fb87b6f0c2d3d55ee370 to your computer and use it in GitHub Desktop.
Add IIS App Pool User to SQL Server.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- http://stackoverflow.com/a/16310139/108374 | |
CREATE LOGIN [IIS APPPOOL\MyAppPool] FROM WINDOWS; | |
CREATE USER MyAppPoolUser FOR LOGIN [IIS APPPOOL\MyAppPool]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment