zoukankan      html  css  js  c++  java
  • sql server 2005 ,恢复xp_cmdshell的办法

    显示行号 复制代码 这是一段程序代码。
    1. --打开
    2. EXEC sp_configure 'show advanced options', 1;
      RECONFIGURE;
      EXEC sp_configure 'xp_cmdshell', 1;
      RECONFIGURE;
      --关闭
    3. EXEC sp_configure 'show advanced options', 1;
      RECONFIGURE;
      EXEC sp_configure 'xp_cmdshell', 0;
      RECONFIGURE;
    显示行号 复制代码 这是一段程序代码。
    1. exec   master.dbo.xp_cmdshell   'dir   c:\'
  • 相关阅读:
    Python 三级菜单
    linux 下按文件类型删除
    linux 做内网端口映射
    ss
    fio
    libXtst.so.6 is needed by teamviewer-12.0.76279-0.i686
    copy 浅复制 与深复制
    Git 使用方法
    关于 爬虫使用 urllib.urlopen 提交默认 User-Agent值
    Python 官方模块文档
  • 原文地址:https://www.cnblogs.com/mmmhhhlll/p/1622893.html
Copyright © 2011-2022 走看看