Hi all, anyone help me on this i want on certain days to run diffrent .bat files I have this but its not working... Im sorry im new to creating batch files anyone help me??? @ECHO OFF :LOOP ECHO Waiting for 5 minutes... PING -n 300 127.0.0.1>nul IF %DATE:~0,3%==Mon CALL monbreakfast-rename.bat IF %DATE:~0,3%==Tue CALL tuesbreakfast-rename.bat IF %DATE:~0,3%==Wed CALL wedbreakfast-rename.bat IF %DATE:~0,3%==Thu CALL thursbreakfast-rename.bat IF %DATE:~0,3%==Fri CALL fribreakfast-rename.bat IF %DATE:~0,3%==Sat CALL satbreakfast-rename.bat IF %DATE:~0,3%==Sun CALL sunbreakfast-rename.bat