Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have following PowerShell script:

cmd /c script1.bat
cmd /c script2.bat

script1.bat at the end of execution have "pause" command, so the execution of my PS script stops.

How can send any key cmd.exe to avoid stopping script execution? NOTE: I can't change batch scripts - they are 3rd party.

share|improve this question
why not convert it all to Powershell and leave the .bat files in the 1980s? – D3vtr0n Jan 16 at 20:15

3 Answers

up vote 5 down vote accepted

You can pipe input to the program (cmd.exe) like this:

"X" | cmd /c script1.bat

share|improve this answer

You could put an empty file called pause.bat in the same directory. Then it would do nothing instead of pause.

share|improve this answer

The batch scripts may be 3rd party, but surely you can just a copy/backup and edit the content to remove the PAUSE command?

I sometimes put a PAUSE in if I am testing something and don't want the window to close, but otherwise I can't think of a good reason to keep that in.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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