@echo off echo %time% if %time:~0,1% == 1 (goto b) if %time:~0,1% == 2 (goto b) else (goto a) :a echo 1 goto end :b echo 2 goto end :end