SQL Server启动/关闭xp_cmdshell

 1 ==》启用xp_cmdshell
 2 USE master 
 3 EXEC sp_configure 'show advanced options', 1 
 4 RECONFIGURE WITH OVERRIDE 
 5 EXEC sp_configure 'xp_cmdshell', 1 
 6 RECONFIGURE WITH OVERRIDE 
 7 EXEC sp_configure   'show advanced options', 0
 8 RECONFIGURE WITH OVERRIDE 
 9  
10  
11 ==》关闭xp_cmdshell
12 USE master 
13 EXEC sp_configure 'show advanced options', 1 
14 RECONFIGURE WITH OVERRIDE 
15 EXEC sp_configure 'xp_cmdshell', 0 
16 RECONFIGURE WITH OVERRIDE 
17 EXEC sp_configure   'show advanced options', 0
18 RECONFIGURE WITH OVERRIDE 

原文链接:https://blog.csdn.net/l1028386804/article/details/85649049

猜你喜欢

转载自www.cnblogs.com/panisme/p/11727795.html
今日推荐