SQL Server 2005 中引入的 xp_cmdshell 選項是服務器配置選項,使系統管理員能夠控制是否可以在系統上執行 xp_cmdshell 擴展存儲過程。
默認情況下,xp_cmdshell 選項在新安裝的軟件上處於禁用狀態,但是可以通過使用外圍應用配置器工具或運行 sp_configure 系統存儲過程來啟用它,如下面的代碼示例所示:
-- 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