2

How can I create an independent process (by independent I mean that if I stop the programm which called it, the process won't stop) from a C++ executable in Windows?

This process is to run a Windows cmd command from it.

J. Bow
  • 21
  • 1

1 Answers1

0

On Windows you can use CreateProcess() to do that.

Jesper Juhl
  • 30,449
  • 3
  • 47
  • 70