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.
View hidden properties of objects in PowerShell.
April 19, 2014
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.)
You May Also Like