Multiple choice technology

Which CmdLet among the following options is used to read the items inside the windows registry?

  1. Get-ItemProperty

  2. Get-Member

  3. Get-ChildItem

  4. Get-Children

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Get-ChildItem is the PowerShell CmdLet used to enumerate items in a Windows registry hive (like HKLM: or HKCU:). It's the same CmdLet used for directory listing, but works with registry provider paths. Get-ItemProperty retrieves property values within a registry key, not the keys themselves.