Guest User

Untitled

a guest
Feb 11th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. _STARTUPINFOA CMD_StartupInfo = {};
  2. CMD_StartupInfo.cb = sizeof(_STARTUPINFOA);
  3.  
  4. _PROCESS_INFORMATION CMD_ProcessInfo = {};
  5.  
  6. CreateProcessA("C:\Windows\System32\cmd.exe",
  7. 0,
  8. NULL,
  9. NULL,
  10. FALSE,
  11. CREATE_NEW_CONSOLE,
  12. NULL,
  13. NULL,
  14. &CMD_StartupInfo,
  15. &CMD_ProcessInfo);
Add Comment
Please, Sign In to add comment