SQL 2008 xp_cmdshell

SQL 2008 xp_cmdshell 在預設情況下,是被Disable。

若要使用,就需要先加以啟用。(Enable)
T-SQL 語法:
exec sp_configure 'show adv',1
reconfigure
exec sp_configure 'xp_cmdshell',1
reconfigure

若不要使用,可以加以停用。(Disable)
T-SQL 語法:
exec sp_configure 'show adv',1
reconfigure
exec sp_configure 'xp_cmdshell',0
reconfigure

xp_cmdshell 的使用範例:
exec xp_cmdshell 'D:\'

1 則留言:

? 提到...

您好:
請問xp_cmdshell的設定值,可以在registry中找到嗎?