Snippets Collections
Get-ChildItem ".\FileStore" |
Select-Object Name, PSPath |
Add-Member -MemberType MemberSet `
           -Name PSStandardMembers `
           -Value ([System.Management.Automation.PSPropertySet]::new(
                      'DefaultDisplayPropertySet',
                      [string[]]('Name')
                  )) `
           -PassThru |
Out-GridView -PassThru -Title "Quick Notes" |
Get-Content | Set-Clipboard
star

Mon Jul 29 2024 02:25:10 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/53323526/select-object-with-out-gridview

#powershell #out-gridview

Save snippets that work with our extensions

Available in the Chrome Web Store Get Firefox Add-on Get VS Code extension