the equivalent of nohup dont exist im affraid :(
one way is to start your sheduler in control panel/services (set this to auto so you aint got to manually start it when your machine boots)
then use the at command from the promt to shedule the task
c:>at 10:00 d:\yourprj.exe
will start your program at 10:00 am
if you want to say do it every wekday at 10
C:>at 10:00 /every:m,t,w,th,f D:\yourprj.exe
Main Topics
Browse All Topics





by: izwizPosted on 2000-07-25 at 02:10:41ID: 3560140
You need to install the program as a service (there is a resource kit utility that will do this). Then just use 'net start' to start the service and 'net stop' to stop it (in a batch file if you like).