Skip to content

Instantly share code, notes, and snippets.

@mrcaron
Created July 30, 2013 19:24
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 mrcaron/6116039 to your computer and use it in GitHub Desktop.
Save mrcaron/6116039 to your computer and use it in GitHub Desktop.
Powershell snippets
# First N in file listing
function doSomething {}
ls $directory | select -first 10 | %{ &doSomething }
# Shutdown a list of machines with a name scheme of "machine-prefix-", numbered from 1-12
(0..12) | %{ shutdown -r -t 0 -f -m $("machine-prefix" + "{0:D2}" -f $_) }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment