Question

When I'm using exec or shell_exec they wait until the spawned app will exit (in Windows). But I need to run and forget (and exit). How?

I tried start DOS/Windows command but did not find the solution yet.

Was it helpful?

Solution

$shell = new COM("WScript.Shell");
$shell->run($command, 0, false);
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top