0
安排一個VBScript我有一個WSF文件,我將在下面粘貼,而我試圖在Windows Server任務計劃程序安排。不能在調度
世界社會論壇,如果我嘗試手動執行,但任務調度程序將無法運行它運行良好。當我觀察時,我可以看到任務狀態切換到「正在運行」,並且在大約10秒鐘後(掛起的任務kill被設置爲1小時)切換回來。我看不到任何在後臺運行(我不知道我是否應該),並且它運行的腳本(telnet到另一個服務器並執行命令)尚未執行。
我敢肯定,這是一個愚蠢的權限問題,但一對夫婦的開啓和關閉谷歌搜索周後和問題,問,我無法弄清楚。
下面是腳本,在任何情況下,它做幫助。
<job>
<script language="VBScript">
Option Explicit
On Error Resume Next
Dim oShell
Set oShell = CreateObject("WScript.Shell")
oShell.Run ("Telnet")
WScript.Sleep 1000
oShell.SendKeys("Open 172.16.8.9")
WScript.Sleep 1000
oShell.SendKeys("{Enter}")
WScript.Sleep 1000
oShell.SendKeys"csmmgr"
WScript.Sleep 1000
oShell.SendKeys("{Enter}")
WScript.Sleep 1000
oShell.SendKeys("quality")
WScript.Sleep 1000
oShell.SendKeys("{Enter}")
WScript.Sleep 1000
oShell.SendKeys "@dsm nyf/vol=nyf/data=""100"" JOB{^}ZLEGDWPJ"
WScript.Sleep 1000
oShell.SendKeys("{Enter}")
WScript.Sleep 1000
oShell.SendKeys "lo"
WScript.Sleep 1000
oShell.SendKeys("{Enter}")
oShell.sendkeys"^]"
WScript.Sleep 1000
oShell.SendKeys "q {Enter}"
</script>
</job>
--sw
「系統管理員」與擁有系統管理員權限的用戶有什麼不同? –