有人有一個腳本/或可以幫助我檢查,是否有可用的服務器的Windows更新?Windows更新檢查與vbscript
因此,當黃色更新圖標位於任務欄中時,我將收到一封郵件。
我的想法是:發送郵件,如果wuauclt.exe在任務欄中超過10分鐘。
但我不知道這樣做。
我發現只有這個:
Dim strComputer, strProcess
Do
strProcess = inputbox("Please enter the name of the process (for instance: explorer.exe)", "Input")
Loop until strProcess <> ""
Do
strComputer = inputbox("Please enter the computer name", "Input")
Loop until strComputer <> ""
If(IsProcessRunning(strComputer, strProcess) = True) Then
WScript.Echo "Process " & strProcess & " is running on computer " & strComputer
Else
WScript.Echo "Process " & strProcess & " is NOT running on computer " & strComputer
End If
感謝您的幫助。
你能解釋一下你的代碼嗎? – Sebastian 2010-07-07 08:45:32
@matthias:我在代碼中添加了一些註釋。 – Tester101 2010-07-08 18:23:04
謝謝,這是一個很好的代碼... – Sebastian 2010-07-12 12:16:37