Questions tagged [taskscheduler]

Task Scheduler is the common name for a set of tools and services that provide scheduled execution of executables and scripts on the Windows operating system. Use taskschedular tag in conjunction with powershell, winapi, windows-task-scheduler tags when Task Scheduler related.

The Task Scheduler helps scheduling automated tasks that perform actions at a specific time or when a certain event occurs. It maintains a library of all scheduled tasks, providing an organized view of the tasks and a convenient point of access for managing them. There can be run, disabled, modified, and deleted tasks from within the library. The Task Scheduler user interface (UI) is a Microsoft Management Console (mmc) snap-in since Windows Vista and Windows Server 2008.

Useful links

492 questions
-2
votes
1 answer

Windows 10: how to tap into unused processing power?

I'm new to the Windows operating system. In a typical day, I might use at most 50% of my CPU and RAM. And maybe 10% of my GPU. I also have a bunch of scripts that I want to run. Those script might use a lot of resources and be computationally…
Julien__
  • 1,962
  • 1
  • 15
  • 25
-2
votes
1 answer

Run task scheduler task 5 min after specific task starting

Is there any way to start task after sometime when specific task starts?
-2
votes
1 answer

How to launch a .cmd file using Task Scheduler?

I have a folder with a PowerShell script and a .cmd file that executes it (among other things). I want task scheduler to launch Run.cmd but it won't work. Manually launching Run.cmd works and so does launching just the .ps1 by itself. Here is how I…
-2
votes
1 answer

Java batch application keep running behind even if it is ended in task scheduler

Java batch application keep running behind even if it is ended in task scheduler. Task scheduler shows Ready status and application behind still not getting stopped.
Ganesh
  • 21
  • 7
-2
votes
1 answer

SQL Decimal Format

I am using a basic console app with windows task scheduler. The program takes some decimal value from the net and saves in the SQL Server table. When I run the program manually there is no problem with the decimal format. If task scheduler runs the…
Battlelamb
  • 97
  • 7
-2
votes
1 answer

Task not working in Task Scheduler

I have a PowerShell script that restarts our SMTP service when it's down. It looks like this: $Computer = "localhost" $SMTPServiceName = "SMTPSVC" $AllServices = get-service -ComputerName $Computer $SMTPService foreach ($Service in…
gib65
  • 141
  • 3
  • 16
-2
votes
1 answer

The best practice to run periodic tasks in Python?

In my system user is allowed to set notifications schedule. He can choose any date and time when he wants to get messages. I have discovered one mechanims is named as Celery in Python. That executes tasks asyncronly. Due this I have pair of…
Alice
  • 207
  • 2
  • 3
  • 10
-2
votes
2 answers

Can all command line utlities be scheduled?

I am using Hyperion Planning. There are a lot of in-built command line utilities. may I know if all these command line utilities can be scheduled to run using the windows task scheduler?
-2
votes
1 answer

Set the user accounts in Task Scheduler through C#

I am trying to set the following options in Task Scheduler using my C# program. 1. In settings tab of Task scheduler, check the box "If the task fails, restart every 1 minute" 2. In General tab of Task scheduler, under security options, set it to…
user3447653
  • 3,968
  • 12
  • 58
  • 100
-2
votes
1 answer

How to wake up system directly to desktop view in Windows 8.1?

Scenario: Task Scheduler - puts a system to a sleep Task Scheduler - wakes the system up Task Scheduler - launches another program but it is vital that it was Problem: During the wake up procedure, a system state stops at the window namely "Lock…
-3
votes
1 answer

Taskscheduler log output

A task job is running by task scheduler every 30 mins everyday. I just want one more task to monitor whether the task is completed or not. Would you please give me the powershell script as necessary below. Sorted by Event id : 101 and 102, specified…
sainale
  • 1
  • 1
  • 1
1 2 3
32
33