I have a list of files that need to be renamed, the original values are on the left the new values are on the right as follows:
B000R825I0_1.jpg test_1.jpg
B000R825I0_2.jpg test_2.jpg
I am new to batch files but I have attempted the following:
ren B000R825I0*.jpg test*.jpg
The renamed files are now incorrectly showing as the values below:
testR825I0_1.jpg
testR825I0_2.jpg
I'm not sure why this is happening, please can someone assist me?