I have a folder in which I need to rename all of the files to replace a string with another string:
File 01 (Something) ABC.txt ---> File 01 - ABC.txt
File 02 (Something) DEF.txt ---> File 02 - DEF.txt
In other words I need to replace (Somthing)
with -
.
I tried the ren
solution mentioned in this answer but I got The syntax of the command is incorrect
. Here's what I tried:
ren *(Something)* *-*