Contact Info

Crumbtrail

ActiveXperts.com » Administration » Powershell » Powershell 1.0 » Get-ItemProperty

Get-ItemProperty - Powershell 1.0 CmdLet

ActiveXperts Network Monitor ships with integrated Powershell scripts to monitor complex network. The scripts run out of the box
Download the ActiveXperts Network Monitor FREE version now »

Get-ItemProperty

Description
Retrieve the properties of an object

Usage


Options


Example(s)
Display information about the C:\Windows directory:
PS C:\>get-itemproperty C:\Windows

Get a file and display as a list:
PS C:\>get-itemproperty C:\Test\Weather.xls | format-list

Display the value name and data of each of the registry entries contained in the .NetFramework registry subkey:
PS C:\>get-itemproperty -path HKLM:\SOFTWARE\Microsoft\.NETFramework

You can also specify the full registry path: (the HKLM shortcut is a psdrive)
PS C:\>get-itemproperty -path Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\

Display the value name and data of a specific registry entry:
PS C:\>get-itemproperty -path HKLM:\SOFTWARE\Microsoft\.NETFramework -name "InstallRoot"