我尝试从 CMD 或 Batch 使用Sudo for Windows启动 powershell 。工作正常。将打开具有管理员权限的 PowerShell 窗口:
rem CMD/BAT
sudo.exe start powershell.exe
然后,我尝试添加一个命令来更改WindowTitle
,因为 CMD 有效:
sudo.exe cmd.exe /k "TITLE Command Prompt"
但是我尝试使用 PowerShell 来更改它,但没有成功:
rem CMD/BAT
sudo.exe start powershell.exe -Command "$Host.UI.RawUI.Windowtitle = 'Windows Powershell'"
那么,PowerShell的正确写法是什么,以便打开时标题看起来像这样?