2019-10-29发表2022-07-06更新powershell / tip1 分钟读完 (大约131个字)PowerShell 技能连载 - 对象的魔法(第 4 部分)将一个对象转换为一个哈希表如何?通过这种方式,当将对象输出到一个网格视图窗口时,可以每行显示一个对象属性: 12345678910111213# get any object$object = Get-Process -Id $pid# try and access the PSObject$hash = $object.PSObject.Properties.Where{$null -ne $_.Value}.Name | Sort-Object | ForEach-Object { $hash = [Ordered]@{} } { $hash[$_] = $object.$_ } { $hash }# output regularly$object | Out-GridView -Title Regular# output as a hash table, only non-empty properties, sorted$hash | Out-GridView -Title Hash PowerShell 技能连载 - 对象的魔法(第 4 部分)http://blog.vichamp.com/2019/10/29/object-magic-part-4/作者吴波发布于2019-10-29更新于2022-07-06许可协议#powershelltippowertipseries