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 am using CreateProcess() to create B, and I can't seem to find any way to make it create the process without it being a child. Same thing with ShellExecuteEx(), but I am probably missing some flag.

Does anyone know what I could use to do this?

EDIT: I forgot to mention that both processes need a HANDLE or process ID to the other

link|improve this question

75% accept rate
Did you look at CREATE_NEW_PROCESS_GROUP in the creation flags argument of CreateProcess()? – vanza Jun 28 '10 at 21:20
feedback

2 Answers

up vote 1 down vote accepted

You can try that process A create process C, which create process B and then process C will be immediatly ended (terminated). In a process B there are exist only information about the direct parent process (process Id of C which is not more running) and not about the process A. So "if A's process tree is killed" the process B will probably stay running.

For example you start Process Explorer (see http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx) then start Total Commander. From the Total Commander you start cmd.exe. From cmd.exe you start notepad.exe. Then type "exit" in the cmd.exe. After terminating of cmd.exe you can see that notepad.exe will no more displayed under Total Commander (totalcmd.exe). After you choose in Process Explorer "Kill Process Tree" for the Total Commander (totalcmd.exe) you can see that notepad.exe stay running.

link|improve this answer
OK, I tried that, and I think it will do, one thing I forgot is that both processes need each other's process ID. With this solution, process B will have process A's ID, but A will only have B's. I think I can figure this one out with some kind of message passing though. Thanks! – Pedro Jun 28 '10 at 22:18
Every process can set exit code (with respect of ExitProcess or C function exit). So if process C (middle process) returns as an exit code the process id of the process B, then process A can give it for example with respect of GetExitCodeProcess function. – Oleg Jun 28 '10 at 22:31
Yeah, I think that's what I'll do, it's seems a bit hacky, but it's good enough, at least for now – Pedro Jun 29 '10 at 2:41
feedback

You can set the paramaeter dwcreationflags as DETACHED_PROCESS in the createprocess API.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.