How do I output text without a newline in PowerShell?

前端 未结 17 2284
独厮守ぢ
独厮守ぢ 2020-12-07 15:13

I want my PowerShell script to print something like this:

Enabling feature XYZ......Done

The script looks something like this:



        
17条回答
  •  攒了一身酷
    2020-12-07 15:50

    You can absolutely do this. Write-Output has a flag called "NoEnumerate" that is essentially the same thing.

提交回复
热议问题