Traverse & Enumerate
You can traverse the Registry like a filesystem thanks to PSProviders.
Get-location
Present dir
Set-location
Change dir
cd HKLM:\\
Navigate the Windows registry
set-location -Path hkcu:
Change current location to the HCKU Hive
set-location -Path software
Change to the Software Key
dir /tc /od c:\\windows\\system32
List all order by date and list creation time
dir /q
Shows file owners
dir /a:h
Shows only hidden files
dir /t:a
Last access time
dir /o:
Filter's by extension, date, etc.
dir /s > dir.txt
Recursive dir to text file
Recursively list the paths of all files in a directory and its subdirectories:
Find applications that begin with Google:
Lists the Name and MAC times of C:\Windows:
Show file renames that are pending:
Show shell, default domain name, default user name, legal notice, etc.:
Shows relevant timestamps:
Last updated
Was this helpful?