PSPowerShell · Lesson 5 of 8
Working with Objects
This is what makes PowerShell unique. Everything is an object. You don't parse text — you access properties. It's revolutionary if you're used to Bash.
◆ Note
Get-Member is your best friend in PowerShell. Pipe anything to Get-Member to see all its properties and methods: Get-Process | Get-Member. This works on any object and replaces reading documentation for basic exploration.
Get-Member is your best friend in PowerShell. Pipe anything to Get-Member to see all its properties and methods: Get-Process | Get-Member. This works on any object and replaces reading documentation for basic exploration.