SQL Scripties
Enable xp_cmdshell in SQl 2008

If you need to call xp_cmdshell you need to allow it; this script enables it.

EXEC sp_configure ‘show advanced options’, 1

GO

RECONFIGURE

GO

EXEC sp_configure ‘xp_cmdshell’, 1

GO

RECONFIGURE

GO

  1. sqlscripts posted this