Skip to content

Instantly share code, notes, and snippets.

@jairoFernandez
Created January 26, 2018 21:29
Show Gist options
  • Save jairoFernandez/624f4e6677f0820b24655ab0b32f94ac to your computer and use it in GitHub Desktop.
Save jairoFernandez/624f4e6677f0820b24655ab0b32f94ac to your computer and use it in GitHub Desktop.
reconfigure cmdshell
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