Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Prevent a Process from RunningContent of Prevent a Process from Running.vbsMD5 Hash: 4C0DD6EA5135960E82AC93E97E76E6CB |
||
' Description: Temporary event consumer that terminates any new instances of Notepad.exe as soon as those new instances are created.
strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colMonitoredProcesses = objWMIService. _ ExecNotificationQuery("select * from __instancecreationevent " _ & " within 1 where TargetInstance isa 'Win32_Process'") i = 0 Do While i = 0 Set objLatestProcess = colMonitoredProcesses.NextEvent If objLatestProcess.TargetInstance.Name = "notepad.exe" Then objLatestProcess.TargetInstance.Terminate End If Loop | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |