Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save evgenylavelin-xx/fad11d31a7a3028501ae to your computer and use it in GitHub Desktop.
Save evgenylavelin-xx/fad11d31a7a3028501ae to your computer and use it in GitHub Desktop.
-- 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