最佳答案
我想让我的PowerShell脚本打印如下内容:
Enabling feature XYZ......Done
脚本看起来像这样:
Write-Output "Enabling feature XYZ......."
Enable-SPFeature...
Write-Output "Done"
但是Write-Output
总是在末尾打印一个新行,所以我的输出不是在一行上。有办法做到这一点吗?