Open links in new tab
  1. To create a scheduled task via Command Prompt on Windows, follow these steps:

    • Open the Start menu, search for Command Prompt, right-click the result, and select Run as administrator.

    • Use the SCHTASKS command with the appropriate parameters to define your task. Below is the syntax: SCHTASKS /CREATE /SC <ScheduleType> /TN "<TaskName>" /TR "<PathToExecutableOrScript>" /ST <StartTime> [AdditionalOptions] /SC: Specifies the schedule type (e.g., DAILY, WEEKLY, MONTHLY, ONCE, etc.). /TN: Specifies the task name (use folder paths for organization, e.g., "MyTasks\TaskName"). /TR: Specifies the path to the program, script, or command to execute. /ST: Specifies the start time in 24-hour format (e.g., 14:00 for 2:00 PM).

    • Example commands for common scenarios: Daily Task: To run Notepad daily at 11:00 AM: SCHTASKS /CREATE /SC DAILY /TN "MyTasks\\NotepadTask" /TR "C:\\Windows\\System32\\notepad.exe" /ST 11:00 Weekly Task: To run a script every Sunday at 9:00 AM: SCHTASKS /CREATE /SC WEEKLY /D SUN /TN "MyTasks\\WeeklyScript" /TR "C:\\Scripts\\MyScript.bat" /ST 09:00 Monthly Task: To run an app on the 15th of every month at 3:00 PM: SCHTASKS /CREATE /SC MONTHLY /D 15 /TN "MyTasks\\MonthlyApp" /TR "C:\\Apps\\MyApp.exe" /ST 15:00 Run as Specific User: To run a task daily at 10:00 AM under a specific user account: SCHTASKS /CREATE /SC DAILY /TN "MyTasks\\UserTask" /TR "C:\\Scripts\\UserScript.bat" /ST 10:00 /RU <Username>

  1. How to create scheduled tasks with Command Prompt …

    Apr 2, 2025 · On Windows s10, you can also use Command Prompt to create, edit, and delete scheduled tasks, and in this guide, I'll show you how.

  2. schtasks create | Microsoft Learn

    In this example, the task is scheduled to run on the fifteenth day of every month, but you can use any schedule type for a task run with system permissions. Additionally, this example uses the /ru System …

  3. Windows Command Prompt Task Scheduling - ZetCode

    Jul 14, 2025 · Windows Command Prompt task scheduling tutorial shows how to use schtasks to automate tasks.

  4. Using Task Scheduler via Command Prompt in Windows

    Dec 6, 2025 · So, I stumbled upon this cool way to use Task Scheduler through the Command Prompt in Windows. It might sound a bit daunting at first, but trust me, it’s not rocket science.

  5. Create a task with task Scheduler to run cmd.exe with …

    Oct 17, 2021 · I created a task with the task scheduler in windows 10 to open …

    • Reviews: 4
    • Schtasks - Scheduled tasks - Windows CMD - SS64

      Create / edit a Scheduled Job/Task. The job can be created on the local or a remote computer.

    • People also ask
      Loading
      Unable to load answer
    • 11 ways open Task Scheduler in Windows - Digital Citizen

      Oct 3, 2025 · How to run Task Scheduler from CMD, open it using Search, the Run window, and many other methods. The guide covers Windows 10 and Windows 11.

    • Create, Edit and Delete a Scheduled Task Via CMD in Windows 10/11

      Aug 28, 2025 · In this post, we will show you by example how to create, edit and delete a scheduled task via CMD in Windows 10/11 and how the respective tasks appear in the Task Scheduler.

    • Scheduling tasks in windows command prompt

      In earlier versions of windows, “at” command allowed to manage scheduled tasks. But that command is now deprecated. You should use “schtasks” command to …

    • How to Schedule Tasks from Command Line Windows 10/11

      Nov 16, 2022 · Learn how to automate daily reboots or shutdowns at specific times using the command line or command prompt in Windows 10/11. Below is an example of scheduling a computer shutdown …