首页 > 其他 > 详细

xp_cmdshell 命令的开启与关闭,和状态查询

时间:2014-07-07 08:11:32      阅读:669      评论:0      收藏:0      [点我收藏+]
/*
EXEC sp_configure ‘allow updates’, 0
RECONFIGURE

*/

-- 启用:
exec sp_configure show advanced options,1
reconfigure
exec sp_configure xp_cmdshell,1
reconfigure

    --关闭:
exec sp_configure xp_cmdshell,0
reconfigure
exec sp_configure show advanced options,0
reconfigure 


select *  from sysconfigures where comment like %show advanced options% or  comment like %shell%

 

xp_cmdshell 命令的开启与关闭,和状态查询,布布扣,bubuko.com

xp_cmdshell 命令的开启与关闭,和状态查询

原文:http://www.cnblogs.com/mywiki/p/3822353.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!