Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Run program at certain time
Name: pfef09 Date: March 21, 2003 at 07:43:06 Pacific
Comment:
How could I make it so that a bat file ran at a certain time 5 days a week?
Name: Nik Date: March 21, 2003 at 11:25:13 Pacific
Reply:
What operating system?
0
Response Number 2
Name: eaw8806 Date: March 21, 2003 at 12:10:24 Pacific
Reply:
you could have a small program running in the backround that waits until it gets to a certin time, then runs the program. you just have to make sure your backround program isnt closed by accident somehow, or crashes.
0
Response Number 3
Name: borelli34 Date: March 21, 2003 at 18:29:21 Pacific
Reply:
Assuming you are using some version of Windows, you can use the task scheduler to do this.
Summary: ::== 5to9.bat @echo off setLocal EnableDelayedExpansion set run=n for /f "tokens=1 delims=:" %%T in ('echo %TIME%') do ( set T=%%T if !T! gtr 16 set run=y if !T! lss 9 set run=y ) if !run! equ y echo...
Summary: Hi All, Hope you guys can help me out here. I have written a script but I want the script to run on certain time. The script will work like this: Whenever I login to the PC the script will call anot...
Summary: info that might be of help-- Compiler: VC++ 6.0 Problem to do with: Win32 SDK OS: Windows XP Hi, At the moment I'm reading Sams Tricks of the Windows Game Programming Gurus, I'm just on chapter two (...