博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
xp_cmdshell 命令的开启与关闭,和状态查询
阅读量:4609 次
发布时间: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

你可能感兴趣的文章
jqGrid 是一个用来显示网格数据的jQuery插件
查看>>
windows 下 gcc/g++ 的安装
查看>>
登陆后跳转到指定页
查看>>
[前端插件]为自己的博客增加打赏功能
查看>>
测试阶段的工作进度
查看>>
《将博客搬至CSDN》
查看>>
ExtJS 刷新后,默认选中刷新前最后一次选中的节点
查看>>
实现一个简单的shell(2)
查看>>
Window 常用命令
查看>>
SMTP协议学习笔记
查看>>
ubuntu18.04下安装eclipse jee
查看>>
在ASP.NET MVC中使用Web API和EntityFramework构建应用程序
查看>>
iOS OpenGL ES简单绘制三角形
查看>>
.NET Core 中正确使用 HttpClient 的姿势
查看>>
【转】Python之文件读写
查看>>
ACM-栈
查看>>
C# 泛型集合
查看>>
new和声明的不同
查看>>
Servlet
查看>>
动态链接库的隐式和显式调用
查看>>