I've been trying to get a batch to start another batch on a certain date. (specified) I've tried all that I can think of. TIMEOUT does not work for this. Any suggestions? EDIT: I am sorry I didn't include enough information. by "batch" I meant to say batch, as in the language. I need to write a script with the language of batch to execute on a desired date. Say If I wrote this code in batch...
@echo off
:start
start notepad.exe
pause >nul
goto start
... and I wanted it to execute automatically on a specied date, such as November 25th, how would I go about doing so? Thank you for somewhat understanding.