user3168011
user3168011

Reputation: 3

Subkey registry with Powershell

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

Answers (1)

Ansgar Wiechers
Ansgar Wiechers

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

Related Questions