I am confused by the first 2 params, module and command-line. I find unless I populate both it doesn't work right, and it seems the documentation says otherwise.
I want to call "testApp.exe param1=123"
The only way I found that works is:
CreateProcess("testApp.exe","testApp.exe param1=123",...
I thought either of these should work, but no luck so far:
CreateProcess("testApp.exe","param1=123",...
CreateProcess(NULL,"testApp.exe param1=123",...
I've read the msdn docs a few times so what am I missing?