Top "Scheduled-tasks" questions

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

How can I enable the Windows Server Task Scheduler History recording?

I have a Windows Server 2008 with scheduled tasks running, mainly .bat files calling PHP files. I have 2 users on the …

windows-server-2008 scheduled-tasks windows-task-scheduler
How to restart a windows service using Task Scheduler

The easiest way to do this is to create a batch file with: NET stop <service name> NET …

windows service scheduled-tasks
How to use Timer class to call a method, do something, reset timer, repeat?

I'm a Java beginner and have been futzing around with various solutions to this problem and have gotten myself kind …

java timer scheduled-tasks
How to call a method daily, at specific time, in C#?

I've searched on SO and found answers about Quartz.net. But it seems to be too big for my project. …

c# winforms methods scheduled-tasks
I need a Nodejs scheduler that allows for tasks at different intervals

I am looking for a node job schedule that will allow me to schedule a number of tasks at different …

node.js cron scheduled-tasks
Powershell script does not run via Scheduled Tasks

I have a small script on my Domain Controller that is setup to email me via SMTP about the latest …

windows powershell scheduled-tasks
How do I stop/start a scheduled task on a remote computer programmatically?

I want to write a script that will stop a scheduled task on a remote computer, do some stuff, and …

windows scheduled-tasks
Windows task scheduler error 101 launch failure code 2147943785

I'm trying to schedule my C# program to run on Windows scheduler. I'm using, Windows 7 Professional. I can create the …

scheduled-tasks
Scheduling Python Script to run every hour accurately

Before I ask, Cron Jobs and Task Scheduler will be my last options, this script will be used across Windows …

python python-3.x cron scheduled-tasks cron-task
Windows Task Scheduler doesn't start batch file task

I have a batch file with the code below to stop and start the SQL Report service: net stop "SQL …

batch-file scheduled-tasks