Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Monitor Process DeletionContent of Monitor Process Deletion.vbsMD5 Hash: ED95C494B93D81838EC854DAD96649E1 |
||
' Description: Temporary event consumer that issues an alert each time a process terminates.
strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colMonitoredProcesses = objWMIService. _ ExecNotificationQuery("select * from __instancedeletionevent " _ & "within 1 where TargetInstance isa 'Win32_Process'") i = 0 Do While i = 0 Set objLatestProcess = colMonitoredProcesses.NextEvent Wscript.Echo objLatestProcess.TargetInstance.Name Loop | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |