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.
12 lines
330 B
12 lines
330 B
on error resume next
|
|
|
|
set process = GetObject("winmgmts:{impersonationLevel=impersonate}!Win32_Process")
|
|
|
|
result = process.Create ("notepad.exe",null,null,processid)
|
|
|
|
WScript.Echo "Method returned result = " & result
|
|
WScript.Echo "Id of new process is " & processid
|
|
|
|
if err <>0 then
|
|
WScript.Echo Hex(Err.Number)
|
|
end if
|