更改 Verbose 默认颜色

Change Verbose default color

Powershell 中详细输出(例如 Write-Verbose-Verbose 开关)的默认颜色是黄色。这使它看起来像警告,尽管它并不重要。

如何更改详细输出的默认颜色?

这可能会影响 $Host 自动变量。

在你的 $Profile 添加:

# set to any valid console color
$Host.PrivateData.VerboseForegroundColor = 'Cyan'