Batch File Rename
Fire up Windows Power Shell
Go to the directory containing the files.
Do
dir | rename-item -NewName {$_.name -replace “Track”,“Emma12_Track”}
The above will pipe a dir list of files to a rename command and replace “Track” with “Emma12_Track”