Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. $results = @()
  2. $objects | %{ $results += $_.Name }
  3.  
  4. $results = objects | select Name
  5.  
  6. ls | Select -Property Name
  7.  
  8. ls | Select -Property Name | gm
  9.  
  10. ls | Select -ExpandProperty Name
  11.  
  12. $objects = ls | Select -ExpandProperty Name
  13.  
  14. $results = $objects.Name
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement