How To Batch Rename Files In Windows 10

by Mahesh Makvana

If you have a bunch of files to rename, manually renaming them would be too time-consuming. One way to save time is to batch rename your files on your Windows 10 PC. There are both built-in features as well as third-party tools to bulk rename files on a Windows computer.

Each method offers a unique way to rename your files. For example, File Explorer helps you quickly rename files but with limited features. The Command Prompt provides a few more features but is not as easy to use.

Table of Contents

    Use File Explorer To Batch Rename Files In Windows 10

    If you’re only looking to basic rename files on your machine, you don’t need to install any apps. The built-in rename feature helps bulk rename files as well and you can use it from the context menu.

    1. Put all the files that you want to give a new name in a single folder.
    2. Open the folder containing your files using File Explorer.
    3. Select all the files that you want to batch rename. To select multiple files in an order, click the first file in the list, hold Shift, and click the last file. All the files between the first and the last file will get selected. To select multiple files in no order, select one file and then hold Ctrl and click the files that you want to select.
    1. Right-click any one file and select Rename from the context menu on your screen.
    1. The name of one of the selected files will become editable. Type the new name you want for all your chosen files and press Enter.
    1. All your chosen files will now have your new name. There will be a number next to each file name to differentiate from one another.
    1. If you made a mistake renaming files, press Ctrl + Z and the file name change will revert back.

    Batch Rename Files Using Command Prompt In Windows 10

    If you want more options to batch rename files on your PC, you can use the Command Prompt. It allows you to use characters like ? and * to select and rename your files. This gives you many ways to for file renaming like:

    The ren or rename command makes batch renaming files possible on Windows.

    1. Search for Command Prompt using Cortana search and launch it.
    1. Type the following to change the current working directory to where your files are.

      cd <folder-path>
    1. To rename all your files and add a suffix to their names, say Mahesh, you can use the following command.

      rename *.* ??????????????????????-Mahesh.*

      Here’s what each parameter in the command means:

      rename – this is the command that lets you rename files from Command Prompt.

      *.* – this selects all files in the current folder.

      ??????????????????????-Mahesh.* – the question marks denote the original names of the files, Mahesh is the new word you want to add, and the * at the end keeps the file extension the same as before.
    1. To change extensions of your files, say from JPG to PNG, you can use the following command.

      rename *.jpg *.png

    The possibilities to batch rename files with this command are endless.

    Rename Multiple Files At Once Using PowerShell In Windows 10

    If you prefer PowerShell to run commands, there’s a command to rename single or multiple files at once on your Windows 10 computer. This command is a bit more complex than the Command Prompt one but has more features.

    The following demonstrates how you replace the word John with Mike in all your file names.

    1. Use the Cortana search to search for Windows PowerShell and open it.
    1. Run the following command in PowerShell to get to the directory where your files are located.

      cd <path>
    1. Type the following command into PowerShell and press Enter. This’ll replace John with Mike in all files in your chosen folder.

      dir | rename-item -NewName {$_.name -replace “John”,”Mike”}
    1. You might get an error but all your file names should be changed.
    2. There are numerous naming varieties you can use with this command to give various types of names to your files.

    Use PowerToys To Batch Rename Files In Windows 10

    Microsoft has a suite of tools called PowerToys and one of these tools is PowerRename. This tool lets you batch rename files with many advanced options on your PC.

    It gets added to the context menu when you install it so you can quickly and easily rename your files.

    1. Head over to the PowerToys page on GitHub and download the latest release to your computer.
    2. Install PowerToys on your computer.
    1. Use File Explorer to open the folder where your files are located.
    2. Select the files you want to rename.
    3. Right-click any one file and choose PowerRename.
    1. You’ll see many options to rename your files.

    Batch Rename Files With Bulk Rename Utility In Windows 10

    Bulk Rename Utility is a free tool to rename multiple files using various options on your computer. It has a single-interface approach to renaming files and includes most options you need for your task.

    1. Download and install Bulk Rename Utility on your PC.
    2. Launch Bulk Rename Utility on your computer.
    3. Use the options on the left-hand side section to choose the folder where your files are located.
    1. Select all the files you want to rename on the right-hand side section.
    1. Use various options depending on how you want to rename your files on the interface.
    1. Click Preview at the bottom-right corner to see how your newly chosen name will look like on your files.
    1. Click Rename to actually rename your files.

    Use Rename Master To Bulk Rename Files In Windows 10

    Rename Master is another free tool to batch rename files on a PC.

    1. Download and install Rename Master on your machine.
    2. Open the tool.
    3. Select your files and folders from the right-hand side pane.
    1. Click the Renaming Script tab and choose one or more options to rename your files.
    1. Click Rename to start renaming your files.

    You can also use a custom script to bulk rename files on your Windows 10 PC.

    What’s your favorite method to rename multiple files at once on your Windows 10 computer? Is it File Explorer or one of the other methods? Let us know in the comments below.

    Exit mobile version