With the help of the Task Scheduler, you can create all kinds of automated tasks to be run by Windows. For example, you can schedule some apps to run at specific time intervals or display a message on your desktop when something happens. Unfortunately, not many people know about this tool, as Windows does not advertise it as much as it deserves. To help you get started working with it, we created this guide on how to use the basic task wizard offered by the Task Scheduler. Here is how it works:
How to access the Task Scheduler in Windows
If you want to use the Task Scheduler, you must first know how to open it. If you do not know how, we have published a separate guide on this subject: 9 ways to start the Task Scheduler in Windows (all versions). If you do not have the time required to read that tutorial too, a fast way to open the Task Scheduler in any modern version of Windows is to use the search. Type the word schedule in Cortana's search field on the taskbar in Windows 10, on the Start screen from Windows 8.1, or in the search field on the Start Menu, in Windows 7. Then, click or tap on the Task Scheduler search result. Before going ahead, remember that Task Scheduler looks and works the same in Windows 10, Windows 7 and Windows 8.1. Because of that and also for simplicity, we are going to use screenshots taken mainly in Windows 10.Step 1. Start the "Create Basic Task" wizard
In the Task Scheduler window, go to the Actions column on the right. There, click or tap the "Create Basic Task" link, to open the wizard bearing the same name. The wizard allows anyone to create basic tasks that are executed by Windows, at a given time or when a specific condition is met. To illustrate the whole process, let's assume that you want to create a task that periodically runs the Disk Cleanup tool.Step 2. Name the task and give it a description
On the first step of the wizard, enter a name and a description for your new task. Then, click or tap the Next button.Step 3. Choose when to execute the new task
You have to decide when the task starts. There are many options for choosing when the task is run: every day, weekly, monthly, only once, each time your computer starts, every time you log on, or when a particular event takes place. This part of the process is called the task trigger and, in other words, it is what needs to happen for the task to run. Pick the option that you want and press Next. You must provide more details about the time when the task should run, depending on the option you have chosen previously. For example, if you want the new task to be executed every Wednesday at 10:00 PM, you should choose Weekly and then make the following configuration:- Set the starting date and time next Wednesday, at 10:00 PM;
- In the "Recur every" field, type 1, meaning that the task is going to be run weekly;
- Choose the day of the week as Wednesday.















Discussion (7)
Hi,
I need to create task scheduler to handle weekdays and weekend also,please suggest settings.
Say we have a task called Ping and you want a task called pong to run after it,But only after verifying that the first task is completed and at a particular time how is this done.
thanks for sharing this
Hello and thank you for a very comprehensive and educative explanation of how to utilize the Windows Task Scheduler.
I’m trying to create basic task in Task Scheduler (Windows 10) and I’m stuck in Browsing Programs/script because I do not know what to select?
create a shortcut pointing to the following “%windir%system32taskschd.msc /s”
without the quotes
Dollar Sign ($) in File name
Here is a trick I found by accident: If you are passing a file name as an argument to a scheduled task, and that file name contains dollar signs, (e.g. “C:Sync Jobs$$ Daily”) you need to double up the dollar signs. Apparently the dollar sign is some sort of special character that needs to be ‘escaped’. Thus, to pass the above file name as an argument, it needs to be specified as “C:Sync Jobs$$$$ Daily”.