PowerShell 技能连载 - 格式化文本输出

如果您希望将输出文本格式化漂亮,您可能需要用 PSCustomObject 并且将它输出为一个格式化的列表,例如:

1
2
3
4
5
6
7
$infos = [PSCustomObject]@{
Success = $true
Datum = Get-Date
ID = 123
}

Write-Host ($infos| Format-List | Out-String) -ForegroundColor Yellow

实际使用时只需要增加或者调整哈希表中的键即可。

PowerShell 技能连载 - 格式化文本输出

http://blog.vichamp.com/2017/12/15/formatting-text-output-1233637440/

作者

吴波

发布于

2017-12-15

更新于

2022-07-06

许可协议

评论