CreateProcess doesn’t pass command line arguments

You should specify also the module name in parameters: LPTSTR cmdArgs = "App [email protected]";
It should be the whole command line (including argv[0]).

Leave a Comment