Created
September 10, 2015 22:49
-
-
Save evgenylavelin-xx/fad11d31a7a3028501ae to your computer and use it in GitHub Desktop.
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
| -- To allow advanced options to be changed. | |
| EXEC sp_configure 'show advanced options', 1; | |
| GO | |
| -- To update the currently configured value for advanced options. | |
| RECONFIGURE; | |
| GO | |
| -- To enable the feature. | |
| EXEC sp_configure 'xp_cmdshell', 1; | |
| GO | |
| -- To update the currently configured value for this feature. | |
| RECONFIGURE; | |
| GO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment