PowerShell 技能连载 - 格式化文本输出
如果您希望将输出文本格式化漂亮,您可能需要用 PSCustomObject
并且将它输出为一个格式化的列表,例如:
1 | $infos = [PSCustomObject]@{ |
实际使用时只需要增加或者调整哈希表中的键即可。
PowerShell 技能连载 - 格式化文本输出
http://blog.vichamp.com/2017/12/15/formatting-text-output-1233637440/
如果您希望将输出文本格式化漂亮,您可能需要用 PSCustomObject
并且将它输出为一个格式化的列表,例如:
1 | $infos = [PSCustomObject]@{ |
实际使用时只需要增加或者调整哈希表中的键即可。
PowerShell 技能连载 - 格式化文本输出
http://blog.vichamp.com/2017/12/15/formatting-text-output-1233637440/