Created
December 27, 2019 11:38
-
-
Save rammanokar/809e36582082f7ae27da2764fcf6a270 to your computer and use it in GitHub Desktop.
Bulk renaming windows powershell
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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