Like crontab
in linux,is there a solution?
I mean,it's run at a specific time,for instance,12 o'click every day.
So it's not services.msc
Like crontab
in linux,is there a solution?
I mean,it's run at a specific time,for instance,12 o'click every day.
So it's not services.msc
For scheduled execution of applications or jobs, you can use the task scheduler
You can also use windows services in order to schedule long running jobs or see what services are running.
On XP, you can go to start->run and run 'services.msc' to see this list.
Run Windows Task Manager; right click the Task Bar or key Ctrl+Alt+Delete to launch Task Manager.
You can also run tasklist from the command line. Type
tasklist /?
for usage.
The answer involves a few different tools in windows:
To view the current running applications and processes you can use Task Manager or better yet the sysinternals suite of tools - in particular Process Monitor - that can be downloaded from microsoft, which provide even more info of the running processes. To get to task manager you can just do a CTRL+ALT+DELETE or right click on the windows toolbar and select Task Manager.
For something like crontab, there is Task Scheduler that you can use to schedule the running of scripts, applications, etc.
In windows you can also have applications running as services - similar to daemons. Under the administrative Tools in Contorl Panel you will see Services. If you double click it you will get a dialog that shows you all the services currently running. You can also create your own programs that run as services.
its called the task scheduler, also, you can use the at command to set scheduling of task programmatically. See here for syntax