How To Rename Multiple Files on Windows

Three steps to Batch Rename Multiple Files on Windows

  1. Open “Windows PowerShell” App. It comes with windows 10.

  2. Go to your desired directory.

  3. 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.