Skip to content

Instantly share code, notes, and snippets.

@MarshalOfficial
Created October 21, 2015 12:40
Show Gist options
  • Save MarshalOfficial/f9bd41e3364ed6c01a59 to your computer and use it in GitHub Desktop.
Save MarshalOfficial/f9bd41e3364ed6c01a59 to your computer and use it in GitHub Desktop.
Enabled Xp_cmdShell in Ms Sql Server
EXEC sp_configure 'allow updates', 0
RECONFIGURE
EXEC sp_configure 'show advanced options', 1
go
RECONFIGURE
GO
EXEC sp_configure 'xp_cmdshell', 1
GO
RECONFIGURE
GO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment