Hidden Object Properties in PowerShell

View hidden properties of objects in PowerShell.

John Savill

April 19, 2014

1 Min Read
shell game

Q: I understand that some objects have hidden properties in PowerShell. How can I see these hidden properties?

A: To view every property of a PowerShell object, use the following command:

Get-Process | Get-Member -Force -View All

(In this case, we're looking at the Process type.)

About the Author

Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.

You May Also Like