배치 쉘은 파일로 적는게 아니라 쉘(명령 프롬프트)에서 직접 실행하는 것이다.
리눅스와 다르게 윈도우의 배치는 파일과 쉘에서의 문법이 조금 다를때가 있다.
Shell
for /f "tokens=*" %a in ('dir /b') do ren "%a" "WhateverYouWant_%a"
File
for /f "tokens=*" %%a in ('dir /b') do ren "%%a" "WhateverYouWant_%%a"