博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
xp_cmdshell 命令的开启与关闭,和状态查询
阅读量:4598 次
发布时间:2019-06-09

本文共 413 字,大约阅读时间需要 1 分钟。

/*EXEC sp_configure ‘allow updates’, 0RECONFIGURE*/-- 启用:exec sp_configure 'show advanced options',1reconfigureexec sp_configure 'xp_cmdshell',1reconfigure    --关闭:exec sp_configure 'xp_cmdshell',0reconfigureexec sp_configure 'show advanced options',0reconfigure select *  from sysconfigures where comment like '%show advanced options%' or  comment like '%shell%'

 

转载于:https://www.cnblogs.com/mywiki/p/3822353.html

你可能感兴趣的文章
css hack兼容写法
查看>>
CSS两列布局 一边固定 一边自适应
查看>>
Hadoop2.6.0 动态增加节点
查看>>
图论的一些概念、定理
查看>>
WebView用法
查看>>
Lecture 3: Planning by Dynamic Programming
查看>>
用flash代替图片IMG,设置动态效果链接
查看>>
关于JS的随笔(二)
查看>>
select()函数以及FD_ZERO、FD_SET、FD_CLR、FD_ISSET(转)
查看>>
webbug3.0菜鸟笔记1
查看>>
数组相关函数
查看>>
Python 和其他编程语言数据类型的比较
查看>>
T2695 桶哥的问题——送桶 题解
查看>>
HTML5 表单
查看>>
Android群英传》读书笔记 (3) 第六章 Android绘图机制与处理技巧 + 第七章 Android动画机制与使用技巧...
查看>>
OLEDB和ODBC的区别(优缺点)
查看>>
关于微信公众平台测试号配置失败的问题
查看>>
CLR执行模块基础
查看>>
【NOIP2001】统计单词个数
查看>>
linux常用端口
查看>>