Indagamos por todo el mundo on line y de este modo tener para ti la respuesta a tu problema, si continúas con alguna pregunta déjanos la pregunta y te respondemos con gusto.
Ejemplo: cómo esperar segundos en un archivo por lotes
Windows version: w10
Set LoopVar to whatever number you want.
Not exactly 1 second per loop but roughly 1 second.
This will count down till it hits zero
the below example waits for 3 seconds and counts down to 1 (not zero)
--------------------------------CODE---------------------------------
@echo off
set LoopVar=3
:Loop
PING localhost -n 2 >NUL
::/ optional line
echo %LoopVar%
set /a LoopVar=%LoopVar%-1
if not %LoopVar%==0 goto Loop
::/ optional line
pause
----------------------------------------------------------------------
below is simplifed delay without extra bits for pasting convence :)
----------------------------------------------------------------------
@echo off
set LoopVar=3
:Loop
PING localhost -n 2 >NUL
echo %LoopVar%
set /a LoopVar=%LoopVar%-1
if not %LoopVar%==0 goto Loop
Recuerda que te brindamos la opción de añadir un enjuiciamiento si chocaste tu preocupación a tiempo.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)