Jump to content

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

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.