Skip to content

Instantly share code, notes, and snippets.

@markdon
Last active February 19, 2019 03:42
Show Gist options
  • Save markdon/0625dff8a27aac2ca9c7c7e85a492a83 to your computer and use it in GitHub Desktop.
Save markdon/0625dff8a27aac2ca9c7c7e85a492a83 to your computer and use it in GitHub Desktop.
Powershell Copy 9000
$NumArray = (1..9000)
ForEach
($number in $numArray) {
Copy-Item "C:\Users\mdonnellon\Pictures\9000\itsover9000.jpg" -Destination "C:\Users\mdonnellon\Pictures\9000\itsover9000_$number.jpg"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment