createprocess
Is it possible to connect or make calls to an existing process?
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[详细]
2023-01-07 01:02 分类:问答Small issue with creating a process ( CreateProcess or ShellExecuteEx) with parameters
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[详细]
2023-01-06 16:39 分类:问答How to create a process that is not a child of it's creating process?
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.[详细]
2023-01-04 20:45 分类:问答Cannot launch 16-bit application anymore
I\'m trying to debug and resolve some issues with a Win32 macro application written C++ however I\'m having the strangest issue.[详细]
2022-12-29 02:25 分类:问答How to call function CreateProcess in Delphi Prism?
I wrote function CreateProcess( lpApplicationName:String; lpCommandLine:String; lpProcessAttributes:IntPtr;[详细]
2022-12-28 06:40 分类:问答CreateProcess from NT service hangs
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[详细]
2022-12-28 01:20 分类:问答Using a handle to collect output from CreateProcess()
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[详细]
2022-12-27 06:30 分类:问答Embedding an existing exe file into another program
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[详细]
2022-12-24 07:13 分类:问答Problem in CreateProcess function!
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[详细]
2022-12-22 16:36 分类:问答CreateProcess, process do not terminate when redirecting std out/in/err
I\'m trying to use CreateProcess to launch a powershell script from with开发者_开发知识库in my application.[详细]
2022-12-18 11:58 分类:问答