Created
October 11, 2017 08:44
-
-
Save fredyfx/52237be770a45fbf581bc18dbea065c9 to your computer and use it in GitHub Desktop.
Solucionando el problema del Application Pool y el IIS (Internet Information Service)
This file contains hidden or 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
IF NOT EXISTS (SELECT name FROM sys.server_principals WHERE name = 'IIS APPPOOL\DefaultAppPool') | |
BEGIN | |
CREATE LOGIN [IIS APPPOOL\DefaultAppPool] | |
FROM WINDOWS WITH DEFAULT_DATABASE=[master], | |
DEFAULT_LANGUAGE=[us_english] | |
END | |
GO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment