Se você estiver no Windows Vista ou superior, aqui está algo que pode fazer o que você deseja. Por exemplo, esse arquivo em lote executa um processo até 11 execuções, ou até 04:17, o que ocorrer primeiro, esperando um segundo entre cada processo (para não atrelar a CPU - se você tiver processamento de arquivo, talvez não precise disso, ou você pode realmente querer fixar a CPU):
@echo off
echo Starting Batch...
REM Use 'setlocal' so that we can use an environment variable without it leaking out to the caller.
setlocal
REM Initialize the counter to zero
set counter=0
:AGAIN
REM Increment the counter
set /A counter+=1
echo Processing loop %counter%...
REM Wait for one second so as not to peg the CPU
timeout /T 1 /NOBREAK>nul
REM Check the counter to see if we've done enough iterations--bail out if we have
if '%counter%'=='11' goto END
REM Check the time to see if the target time has been reached--if not go back and process again
FOR /F "TOKENS=1 eol=/ DELIMS=/ " %%A IN ('time /T') DO IF NOT '%%A'=='04:17' goto AGAIN
:END
REM End the local processing and go back to the main environment
endlocal