Leaked source code of windows server 2003
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.

11 lines
330 B

  1. on error resume next
  2. set process = GetObject("winmgmts:{impersonationLevel=impersonate}!Win32_Process")
  3. result = process.Create ("notepad.exe",null,null,processid)
  4. WScript.Echo "Method returned result = " & result
  5. WScript.Echo "Id of new process is " & processid
  6. if err <>0 then
  7. WScript.Echo Hex(Err.Number)
  8. end if