You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
547 B
22 lines
547 B
on error resume next
|
|
|
|
const wbemPrivilegeDebug = 19
|
|
|
|
set service = GetObject ("winmgmts:{impersonationLevel=impersonate}")
|
|
service.security_.privileges.Add wbemPrivilegeDebug
|
|
|
|
if err <> 0 then
|
|
WScript.Echo Hex(Err.Number), Err.Description, Err.Source
|
|
end if
|
|
|
|
set process = service.get ("Win32_Process.Handle=""24""")
|
|
|
|
if IsNull(process.priority) then
|
|
WScript.Echo process.Name, "<NULL>"
|
|
else
|
|
WScript.Echo process.name, process.priority
|
|
end if
|
|
|
|
if err <> 0 then
|
|
WScript.Echo Err.Number, Err.Description, Err.Source
|
|
end if
|