Created
January 26, 2018 21:29
-
-
Save jairoFernandez/624f4e6677f0820b24655ab0b32f94ac to your computer and use it in GitHub Desktop.
reconfigure cmdshell
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
USE master; | |
GO | |
EXEC sp_configure 'show advanced option' | |
USE master; | |
GO | |
EXEC sp_configure 'show advanced option', '1'; | |
RECONFIGURE WITH OVERRIDE; | |
EXEC sp_configure 'xp_cmdshell', 1; | |
GO | |
RECONFIGURE; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment