Last active
June 2, 2022 14:26
-
-
Save rafaelvelosoAZ/fc68cfa21b05cc77c08a9963a62d7f8c to your computer and use it in GitHub Desktop.
Query to enable 'xpcmdshell' on 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
EXEC spconfigure 'show advanced options', '1' | |
RECONFIGURE | |
-- this enables xpcmdshell | |
EXEC spconfigure 'xpcmdshell', '1' | |
RECONFIGURE* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment