In Windows, I currently have two programs working as follow. Program A calls Program B with some parameters, which causes Program B to return some text then exits. Program A calls Program B again with
Related question: CreateProcess doesn't pass command line arguments. Is there a difference between passing an argument vs. passing a parameter to an EXE when using CreateProcess (and/or ShellExec
I have two processes, A and B. At some point A creates B. After B is created, if A\'s process tree is killed, I want B to still be around.
I\'m trying to debug and resolve some issues with a Win32 macro application written C++ however I\'m having the strangest issue.
I wrote function CreateProcess( lpApplicationName:String; lpCommandLine:String; lpProcessAttributes:IntPtr;
I\'m trying to start SQLServer2008SP1 express installer from the NT service process. Process is started successfully, I can see it in task manager, but it does nothing, just stays inactive until I kil
I am using CreateProcess() to run an external console application in Windows from my GUI application.I would like to somehow gather the output to know whether开发者_JAVA百科 there were errors.Now I kn
Is there a way to link an existing .exe file with other C++ source files during compilation? What I\'m actually trying to do is to compress an开发者_Go百科d decompress some files in my console program
I have my main application ,from my main application I will be calling another module(third party) to perform a small operation in my main application,when I call that module..it processes for a parti
I\'m trying to use CreateProcess to launch a powershell script from with开发者_开发知识库in my application.