Is there a bug in Powershell's Start-Process command when accessing the StandardError and StandardOutput properties?

If I run the following I get no output

$process = Start-Process -FilePath ping -ArgumentList localhost -NoNewWindow -PassThru -Wait
$process.StandardOutput
$process.StandardError

But if I redirect the output to a file I get the expected result

$process = Start-Process -FilePath ping -ArgumentList localhost -NoNewWindow -PassThru -Wait -RedirectStandardOutput stdout.txt -RedirectStandardError stderr.txt
link|improve this question
In this specific case do you really need Start-process?...$process= ping localhost # would save the output in the process variable. – Ps1CsCpp Jan 7 at 1:00
True. I was looking for a cleaner way to handle return and arguments. I ended up writing the script like you showed. – jzbruno Jan 9 at 16:34
feedback

1 Answer

up vote 8 down vote accepted

That's how Start-Process was designed for some reason. Here's a way to get it without sending to file:

$pinfo = New-Object System.Diagnostics.ProcessStartInfo
$pinfo.FileName = "ping.exe"
$pinfo.RedirectStandardError = $true
$pinfo.RedirectStandardOutput = $true
$pinfo.UseShellExecute = $false
$pinfo.Arguments = "localhost"
$p = New-Object System.Diagnostics.Process
$p.StartInfo = $pinfo
$p.Start() | Out-Null
$p.WaitForExit()
$output = $p.StandardOutput.ReadToEnd()
$output
link|improve this answer
I am accepting your answer. I wish they wouldn't have created properties that aren't used, it is very confusing. – jzbruno Jan 9 at 16:36
@jzbruno The PowerShell team didn't create the StandardOutput/StandardError properties... They are part of the underlying System.Diagnostics.Process object . However they are only available when the UseShellExecute property is set to false. So it depends on how the PowerShell team implemented Start-Process behind the scenes... Unfortunately I can't look at the source code :-( – Andy Arismendi Jan 9 at 16:48
feedback

Your Answer

 
or
required, but never shown

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