September 22nd, 2014

PowerTip: Display Hidden Properties from Object

Doctor Scripto
Scripter

Summary: Learn how to use Windows PowerShell to display hidden properties from an object.

Hey, Scripting Guy! Question How can I see if there are any hidden properties on an object I have returned from Windows PowerShell?

Hey, Scripting Guy! Answer Use the -Force parameter with either Format-List or Format-Table, for example:

Get-ChildItem C: | Format-List * -Force

  

Author

The "Scripting Guys" is a historical title passed from scripter to scripter. The current revision has morphed into our good friend Doctor Scripto who has been with us since the very beginning.

0 comments

Discussion are closed.