Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Get the Process ID for an Executable File. But Only If the Process Has a Specified OwnerContent of Get the Process ID for an Executable File. But Only If the Process Has a Specified Owner.vbsMD5 Hash: D90A82E48BCE3A380D665E8A7B52C136 |
||
strComputer = "."
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2") Set colProcessList = objWMIService.ExecQuery _ ("Select * from Win32_Process Where Name = 'notepad.exe'") For Each objProcess in colProcessList objProcess.GetOwner strNameOfUser,strUserDomain strOwner = strUserDomain & "\" & strNameOfUser If LCase(strOwner) = "fabrikam\kenmyer" Then Wscript.Echo objProcess.Handle End If Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |