Summary: Learn how to use Windows PowerShell to display hidden properties from an object.
How can I see if there are any hidden properties on an object I have returned from Windows PowerShell?
Use the -Force parameter with either Format-List or Format-Table, for example:
Get-ChildItem C: | Format-List * -Force