About 50 results
Open links in new tab
  1. Select the values of one property on all objects of an array in ...

    Similarly, [pscustomobject] input makes the pipeline-based Select-Object -ExpandProperty Name faster, in Windows PowerShell virtually on par with .ForEach({ $_.Name }), but in PowerShell Core still …

  2. powershell select-object property AND expandproperty

    Nov 14, 2019 · Trying to execute a Select-Object, but i can't seem to return property and a value from a key-value list property. There are 3 properties i want returned RunStart, Message and 'tableName' …

  3. powershell - Where-Object, Select-Object and ForEach-object ...

    Jun 4, 2019 · Where-Object, Select-Object and ForEach-Object I am a PowerShell beginner. I don't understand too much. Can someone give examples to illustrate the differences and usage scenarios …

  4. powershell - Select-Object on nested collections - Stack Overflow

    Apr 4, 2013 · I'm writing a Powershell cmdlet to list changesets from TFS. I successfully query TFS and get a collection of changesets but want to return simplified objects that contain only a few properties. …

  5. Powershell select a specific value - Stack Overflow

    Mar 26, 2013 · Powershell select a specific value Asked 12 years, 10 months ago Modified 9 years, 2 months ago Viewed 18k times

  6. powershell - Select-Object - what can I select? - Stack Overflow

    I'm learning PowerShell and I am stuck at an issue where I have to export something and I don't know its object name. I use this command: Get-Mailbox -ResultSize Unlimited | Select-Object Display...

  7. powershell - How to get an object's property's value by property name ...

    39 You can get a property by name using the Select-Object cmdlet and specifying the property name (s) that you're interested in. Note that this doesn't simply return the raw value for that property; instead …

  8. PowerShell Select-Object: Using -Unique with First/Last/Skip/Index

    Oct 14, 2021 · Maybe I'm the only one trying to use Select-Object to select the -First X unique instances from a set of data. Based on the testing below, it looks like using Select-Object with the -Unique …

  9. Powershell : Use a Select-Object expression with a string

    Jun 4, 2013 · Thanks! I tried "select-object $_" with success too, so i believed that the problem was the calculated property for a string object. So the gotcha here is that {n="label"; e=$_ } will fail but putting …

  10. powershell - Select-Object -ExcludeProperty based on the property's ...

    Mar 28, 2019 · Select-Object -ExcludeProperty based on the property's value Asked 6 years, 10 months ago Modified 6 years, 10 months ago Viewed 9k times