Skip to content

Instantly share code, notes, and snippets.

@rammanokar
Created December 27, 2019 11:38
Show Gist options
  • Save rammanokar/809e36582082f7ae27da2764fcf6a270 to your computer and use it in GitHub Desktop.
Save rammanokar/809e36582082f7ae27da2764fcf6a270 to your computer and use it in GitHub Desktop.
Bulk renaming windows powershell
Get-ChildItem C:/temp/ -Recurse -Filter *Goop* | Rename-Item -NewName { $_.name -replace 'Goop', 'gooey2'} -verbose
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment