Usually, you would want to hide the CMD window. In my case, I'll be doing some tests with PHP+CLI. It will be mighty useful if PHP could be made to launch a CLI popup. But alas, I can't find a way to make it to.

The following command should have made it work, but it doesn't:

START "PHP AE2" CMD /K DIR

The PHP code in question is based on proc_open():

$proc=proc_open($cmd,array(
    0=>array('pipe','r'), // STDIN
    1=>array('pipe','w'), // STDOUT
    2=>array('pipe','w')  // STDERR
),$pipes);
// ....some stream stuff....
$return=proc_close($proc);

Although the command runs fine, the popup doesn't show up. I suspect this is a feature of Apache. Is there a way to completely detach the CMD from its parent?

Also, I'll be substituting DIR with a small script/batch/program that initializes the environment, so it is important that I can execute a program after the popup shows up.

(This is mostly for educational purposes and won't follow into production.)

link|improve this question

79% accept rate
The /B option suppresses opening a window, so cmd would be running in the context of your webserver or whatever's calling the 'start' command. – Marc B May 30 '11 at 14:51
@MarcB - Ah, sorry, I meant to remove that one (slipped out from testing). The issue is still there. – Christian May 30 '11 at 14:54
feedback

1 Answer

up vote 2 down vote accepted

I am bit late to answering this question, but to help close this question here is my answer.

The command is correct but you need to get Apache to interact with the desktop. If you are on a windows machine, just go to services, find Apache and make sure you tick the "Allow Service to Interact with desktop" checkbox.

link|improve this answer
That is quite...unexpected to say the least. Will try it soon... – Christian Jul 25 '11 at 6:41
Hmm, it seemed to have fixed the problem... – Christian Jul 25 '11 at 7:02
feedback

Your Answer

 
or
required, but never shown

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