7
Start-Process ile standart çıktı ve hata yakalama
Ve özelliklerine Start-Processerişirken PowerShell'in komutunda bir hata var mı ?StandardErrorStandardOutput Aşağıdakileri çalıştırırsam çıktı alamam: $process = Start-Process -FilePath ping -ArgumentList localhost -NoNewWindow -PassThru -Wait $process.StandardOutput $process.StandardError Ancak çıktıyı bir dosyaya yönlendirirsem beklenen sonucu alırım: $process = Start-Process -FilePath ping -ArgumentList localhost -NoNewWindow -PassThru -Wait -RedirectStandardOutput stdout.txt -RedirectStandardError stderr.txt