創建作業,執行以下命令
exec master..XP_cmdshell 'http://srm.rapoo.cn?op=sapintferace&i=1&t=1'
激活執行同步網步
以下內容來自網絡,介紹如何啟用 xp_cmdshell 擴展存儲過程將命令
一、簡介
xp_cmdshell 擴展存儲過程將命令字符串作為操作系統命令 shell 執行,並以文本行的形式返回所有輸出。
三、SQL Server 2005中的xp_cmdshell
由於存在安全隱患,所以在SQL Server 2005中, xp_cmdshell 默認是關閉的。
此時,如果執行 xp_cmdshell 將會提示服務未開啟:
exec xp_cmdshell 'dir c:/'
消息 15281,級別 16,狀態 1,過程 xp_cmdshell,第 1 行
SQL Server 阻止了對組件 'xp_cmdshell' 的 過程'sys.xp_cmdshell' 的訪問,因為此組件已作為此服務器安全配置的一部分而被關閉。系統管理員可以通過使用 sp_configure 啟用 'xp_cmdshell'。有關啟用 'xp_cmdshell' 的詳細信息,請參閱 SQL Server 聯機叢書中的 "外圍應用配置器"。
四、開啟xp_cmdshell
EXEC sp_configure 'show advanced options', 1;RECONFIGURE;EXEC sp_configure 'xp_cmdshell', 1;RECONFIGURE;
關閉一樣.只是將上面的後面的那個"1"改成"0"就可以了.
EXEC sp_configure 'show advanced options', 1;RECONFIGURE;EXEC sp_configure 'xp_cmdshell', 0;RECONFIGURE;
未能找到存儲過程 'master..xp_cmdshell'
第一步執行:EXEC sp_addextendedproc xp_cmdshell,@dllname ='xplog70.dll'declare @o int
第二步執行:sp_addextendedproc 'xp_cmdshell','xpsql70.dll'