Three steps to Batch Rename Multiple Files on Windows
-
Open “Windows PowerShell” App. It comes with windows 10.
-
Go to your desired directory.
-
Type in the following command replacing part of the string:
dir | rename-item -NewName {$_.name -replace " ", "_"}
In this case I am replacing spaces with underscores in a file name.