есть кто-нибудь скрипт / или может помочь мне проверить, есть ли обновление windows для сервера?
Так что я получу письмо, когда на панели задач появится желтый значок обновления.
Моя идея такова: отправьте письмо, если 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
Спасибо за помощь.