Jump to content

Open a Process


The Little Guy

Recommended Posts

I have this code:

$shell = new COM('WScript.Shell');
$shell->Run("C:\WINDOWS\system32\cmd.exe /K ".$ini['indexer']['command'], 0, false);

 

When it runs, it opens the command line, but then when it is done, it leaves the process open. How can I close it when the process is complete?

Link to comment
https://forums.phpfreaks.com/topic/227019-open-a-process/
Share on other sites

C:\Documents and Settings\Dad>help cmd

Starts a new instance of the Windows XP command interpreter

 

CMD [/A | /U] [/Q] [/D] [/E:ON | /E:OFF] [/F:ON | /F:OFF] [/V:ON | /V:OFF]

    [[/s] [/C | /K] string]

 

/C      Carries out the command specified by string and then terminates

/K      Carries out the command specified by string but remains

...

 

use /C instead of /K

Link to comment
https://forums.phpfreaks.com/topic/227019-open-a-process/#findComment-1171336
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.