1.恢复xp_cmdshell SQL Server阻止了对组件 'xp_cmdshell' 的过程'sys.xp_cmdshell' 启用,因为此组件已作为此服务器安全配置的一部分而被关闭。

  解决方法:系统管理员可以通过使用 sp_configure 启用 'xp_cmdshell'。

  )运行:

  EXEC sp_configure 'show advanced options', 1;

  RECONFIGURE;

  EXEC sp_configure 'xp_cmdshell', 1;

  RECONFIGURE;

  如果要关闭只需把1改为0即可

2.

相关文章:

  • 2021-11-07
  • 2021-04-14
  • 2021-04-04
  • 2021-09-29
  • 2021-09-19
  • 2021-10-28
  • 2021-11-13
  • 2021-09-27
猜你喜欢
  • 2021-04-11
  • 2021-09-24
  • 2021-04-28
  • 2021-10-25
  • 2021-09-27
  • 2021-04-01
相关资源
相似解决方案