How to rename multiple files Windows

Question:

How to rename multiple files Windows

Answer:

If you only want to remove some characters in the beginning

1. Open a command prompt.
2. goto the folder with your files.
3. Write this command and press enter.

rename "Page_*.jpg" "/////*.jpg"

To rename and remove a character from the middle of the filename

1. open powershell.
2. browse to your folder
3. type this and press enter.

get-childitem *.jpg | foreach { rename-item $_ $_.Name.Replace("_", "") }

Note: Just change the file extension and the character to be replaced and it workds

Scroll to Top