PowerShell 技能连载 - 编程检查对象属性
当您用 Import-Csv
将一个 CSV 列表导入 PowerShell,或用任何其它类型的对象来处理时:如何自动确定对象的属性?以下是一个简单的方法:
1 | # take any object, and dump a list of its properties |
为什么这种方法有用?有许多使用场景。例如,您可以检测一个注册表键的名称,支持用通配符转储所有的命令:
1 | $RegPath = "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" |
PowerShell 技能连载 - 编程检查对象属性
http://blog.vichamp.com/2018/10/23/examining-object-properties-programmatically/