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
$process= ping localhost# would save the output in the process variable. – Ps1CsCpp Jan 7 at 1:00