Redirect Write-Host statements to a file

前端 未结 12 1756
鱼传尺愫
鱼传尺愫 2020-11-29 08:39

I have a PowerShell script that I am debugging and would like to redirect all Write-Host statements to a file. Is there an easy way to do that?

12条回答
  •  遥遥无期
    2020-11-29 08:56

    Use Write-Output instead of Write-Host, and redirect it to a file like this:

    Deploy.ps1 > mylog.log or Write-Output "Hello World!" > mylog.log
    

提交回复
热议问题