Sqlserver开启xp_cmdshell
Posted 枯丿叶
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Sqlserver开启xp_cmdshell相关的知识,希望对你有一定的参考价值。
Sqlserver开启xp_cmdshell:
EXEC sp_configure ‘show advanced options‘, 1;
RECONFIGURE WITH OVERRIDE;
EXEC sp_configure ‘Ole Automation Procedures‘, 1;
RECONFIGURE WITH OVERRIDE;
EXEC sp_configure ‘show advanced options‘, 0;
exec master..xp_cmdshell "whoami"
以上是关于Sqlserver开启xp_cmdshell的主要内容,如果未能解决你的问题,请参考以下文章