Skip to content

Instantly share code, notes, and snippets.

@notesbytom
Created August 23, 2017 21:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save notesbytom/ca53a66cb71a2b2f7114e59e1368600f to your computer and use it in GitHub Desktop.
Save notesbytom/ca53a66cb71a2b2f7114e59e1368600f to your computer and use it in GitHub Desktop.
powershell foreach pipeline objects
# This example changes name "frank" on pipeline objects to "francis"
$objList | foreach { if($_.name -eq "frank") { $_.name = "francis" } $_ } | sort name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment