Reputation: 3
i want te get a list of all subkey registry with Powershell, i try to use this, but i have only the parent key "Peacy"
Get-ItemProperty HKLM:\Software\Wow6432Node\Peacy
Any idea please ? Thanks
Upvotes: 0
Views: 748
Reputation: 200273
Get-ItemProperty
will give you the values of a key. For enumerating the subkeys of a registry key you need to use Get-ChildItem
.
Get-ChildItem HKLM:\Software\Wow6432Node\Peacy
Upvotes: 1