I have a PowerShell 1.0 script to just open a bunch of applications. The first is a virtual machine and the others are development applications. I want the virtual machine to finish booting before the rest of the applications are opened.

In bash I could just say "cmd1 && cmd2"

This is what I've got...

C:\Applications\VirtualBox\vboxmanage startvm superdooper
    &"C:\Applications\NetBeans 6.5\bin\netbeans.exe"
link|improve this question

feedback

2 Answers

up vote 31 down vote accepted

Normally, for internal commands PowerShell does wait before starting the next command. One exception to this rule is external Windows subsystem based EXE. The first trick is to pipeline to Out-Null like so:

Notepad.exe | Out-Null

PowerShell will wait until the Notepad.exe process has been exited before continuing. That is nifty but kind of subtle to pick up from reading the code. You can also use Start-Process with the -Wait parameter:

Start-Process <path to exe> -NoNewWindow -Wait

If you are using the PowerShell Community Extensions version it is:

$proc = Start-Process <path to exe> -NoWindow
$proc.WaitForExit()

Another option in PowerShell 2.0 is to use a background job:

$job = Start-Job { invoke command here }
Wait-Job $job
Receive-Job $job
link|improve this answer
My bad. Start-Process -Wait works great, but now I see it this is not what I was looking for... I'm actually seeking to wait until the vm to finishes booting. I imagine that's going to be tough. I suppose I'll have to find a new thread for that. Thanks but. – John Mee Nov 20 '09 at 0:37
feedback

Consuming the output of an executable in any way will make Powershell wait, by either saving the results to a string or piping it to something else. I usually just pipe the results to Out-Host, so that I can at least see them. There are also other more complicated ways to do this as have been mentioned here and elsewhere.

$output = ping.exe example.com

ping.exe example.com | Out-Host

I do miss the CMD/Bash style operators that you referenced &, &&, ||. It seems we have to be more verbose with Powershell v2 and below.

# equivalent to &
doThis.exe | Out-Host
doThat.exe | Out-Host

# equivalent to &&
doThis.exe | Out-Host
if ($?) { doThat.exe | Out-Host }

# equivalent to ||
doThis.exe | Out-Host
if (-not $?) { doThat.exe | Out-Host }

# Note: could also look at the value of $LASTEXITCODE
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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