Skip to content

Instantly share code, notes, and snippets.

@fredyfx
Created October 11, 2017 08:44
Show Gist options
  • Save fredyfx/52237be770a45fbf581bc18dbea065c9 to your computer and use it in GitHub Desktop.
Save fredyfx/52237be770a45fbf581bc18dbea065c9 to your computer and use it in GitHub Desktop.
Solucionando el problema del Application Pool y el IIS (Internet Information Service)
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