Search found 1 match

by redskullington
17 Dec 2015 23:29
Forum: DOS Batch Forum
Topic: Help with checking for a specific time and doing a specific task at that time
Replies: 3
Views: 3716

Help with checking for a specific time and doing a specific task at that time

Code
------------------------

Code: Select all

@echo off


:start
echo %time%
   if %time% EQU 12:00:00 (

echo.> PLEBLORD.txt

) ELSE (
   goto start

)

-----------------------