Windows – add “text” to end of multiple filenames

Using the code below I add text to end of file names which are: 1.mp32.mp3 and should be: 1text.mp32text.mp3 but it changed to: 1.mp3text2.mp3text Code: @ECHO ONFOR %%A IN (“C:Usersuser123Desktopmp3*.mp2”) DO (    CALL :RenameFiles “%%~A” “%%~NXA”)GOTO EOF:RenameFilesSET fname=%~2SET renname=%fname=%REN “%~1” “%renname%text%”GOTO E Solution: How do I add "text" to the end of multiple filenames. Before:…

Read More