Top "Scheduled-tasks" questions

A scheduled task is a computer task that is scheduled to happen at a certain time and may repeat.

Run exe file with parameters in a batch file

Please have a look at my batch file. echo off start "c:\program files\php\php.exe D:\mydocs\mp\…

php windows batch-file scheduled-tasks
How to schedule a function to run every hour on Flask?

I have a Flask web hosting with no access to cron command. How can I execute some Python function every …

python asynchronous flask cron scheduled-tasks
Scheduling recurring task in Android

I'm designing an app that has a recurring task of sending presence to a dedicated server as long as the …

android scheduled-tasks
Java Timer vs ExecutorService?

I have code where I schedule a task using java.util.Timer. I was looking around and saw ExecutorService can …

java timer scheduled-tasks scheduling executorservice
How do I capture the output of a script if it is being ran by the task scheduler?

Using Windows Server 2008, how do I go about capturing the output of a script that is being ran with the …

batch-file scheduled-tasks
Windows 2008 server task scheduler does not run .bat batch job

I have a batch file on a Windows 2008 server that, when invoked from command line works fine. However, when I …

batch-file windows-server-2008 scheduled-tasks windows-server-2008-x64
How do I run a PHP script using windows schedule task?

I have installed localhost/server in my machine and I need to run a php script using windows schedule task. …

php windows-7 scheduled-tasks
How to conditionally enable or disable scheduled jobs in Spring?

I am defining scheduled jobs with cron style patterns in Spring, using the @Scheduled annotation. The cron pattern is stored …

java spring cron scheduled-tasks
How can I see which CPU core a thread is running in?

In Linux, supposing a thread's pid is [pid], from the directory /proc/[pid] we can get many useful information. For …

linux linux-kernel scheduled-tasks scheduling scheduler
How i can run my TimerTask everyday 2 PM

I want to execute a job everyday 2PM . Which method of java.util.Timer i can use to schedule my …

java timer scheduled-tasks