@echo off setlocal for /f "usebackq tokens=*" %%a in (`dir /b /a:d`) do ( rem enter the directory pushd %%a echo In Directory: %%a ren QA_ICE_Call&Ticket_SRXXXXXXX.xltx SRXXXXXXX_QA_ICE_Call&Ticket.xltx rem leave the directory popd ) endlocal