Powershell中详细输出(例如
Write-Verbose
或-Verbose
开关(的默认颜色为黄色。这使它看起来像是警告,尽管它不是关键的。
如何更改详细输出的默认颜色?
这可能包含$Host自动变量。
在您的$Profile中添加:
# set to any valid console color
$Host.PrivateData.VerboseForegroundColor = 'Cyan'