Episode 10 – Select-Object
Update: 2011-09-19
Description
Download the MP3 Podcast
In this episode we explore all of the possibilities for one of the most used PowerShell cmdlets.
Basic Example:
Get-Process |select name, id
Parameters discussed:
- First
- Last
- Skip
- Unique
Return a string collection of the process names rather than an object with only a name property
Get-Process |select -ExpandProperty Name
Return the collection that exists within the access property
Get-Acl |select -ExpandProperty Access
Create a custom property with Name/Expression Hash
Get-Process |select @{Name='Modified Name';Expression={$_.Name + "_Modified"}}Brought to you by The Windows PowerShell Bible 2.0 and PowerShellGroup.Org
Comments
In Channel



