写主机“” - 替代

时间:2012-12-09 20:16:23

标签: powershell powershell-v2.0

是否有替代:Write-Host“”在powershell中返回运输?

2 个答案:

答案 0 :(得分:4)

其他选择:

 write-host

 $host.UI.WriteLine()

 [console]::WriteLine() # this also  in ISE v3.0

在字符串中:

"Firts line`r`n`r`nThird Line"

答案 1 :(得分:0)

也许还有一个选择:

Write-Host "Line1"
"" #Line2
Write-Host "Line3"