Skip to content

TechDirectArchive

Hands-on IT, Cloud, Security, Veeam & DevOps

  • Home
  • About
  • Advertise With US
  • Reviews
  • Contact
  • Toggle search form

How to create, edit and delete a scheduled task via the Command Prompt

Posted on 31/03/202016/09/2026 Christian By Christian 4 Comments on How to create, edit and delete a scheduled task via the Command Prompt
  1. Home
  2. Windows Server
  3. How to create, edit and delete a scheduled task via the Command Prompt
create scheduled task

The Task Scheduler enables you to automatically perform routine tasks on a chosen computer. Task Scheduler does this by monitoring whatever criteria you choose (referred to as triggers) and then executing the tasks when those criteria are met. Kind refer to these related guides: How to create advanced scheduled task on Windows Server with Windows Task Scheduler, how to create a Scheduled task with Windows Admin Center, how to setup Windows server backup and create backup jobs, and how to create Windows Task Scheduler via the command prompt. 

You can use the Task Scheduler to execute tasks such as starting an application, sending an email message, or showing a message box. Tasks can be scheduled to execute in response to these events, or triggers.

Task Scheduler allows you to automate many tasks on Windows 10, 11 a,d on Windows Servers. The Task Scheduler was formerly refferd to as “Scheduled Tasks”. Here is a link to all articles relating to task scheduler.

How to use the Command Prompt

Windows Server and Windows 10, by default, have the Task Scheduler, and this enables you to run tasks automatically at a scheduled time. Task schedulers can be used to launch applications, word documents and execute scripts at a scheduled time.

The command prompt can be used to create, edit and delete a scheduled task and below are some flags associated with the executable SCHTASKS.EXE file.

Task Scheduler creates options via Command-line: Here are the options allowing to create and customize a scheduled task via the command-line.

/CREATESpecifies that you want to create a new an automated routine.
/SCDefines the schedule for the task. Options available, include MINUTE, HOURLY, DAILY, WEEKLY, MONTHLY, ONCE, ONSTART, ONLOGON, ONIDLE, and ONEVENT.
/Dspecifies the day of the week to execute the task. Options available, include MON, TUE, WED, THU, FRI, SAT, and SUN. If you’re using the MONTHLY option, then you can use 1 – 31 for the days of the month. Also, there’s the wildcard “*” that specifies all day.
/TNSpecifies the task name and location. The “MyTasks\Notepad task” uses the “Notepad task” as the name and stores the task in the “MyTasks” folder. If the folder isn’t available, it’ll be created automatically.
/TRSpecifies the location and the name of the task that you want to run. You can select an app or a custom script.
/STDefines the time to run the task (in 24 hours format).
/QUERYDisplays all the system tasks.
/RUSpecifies the task to run under a specific user account.

Create Scheduled Task

Below are the space to create a scheduled task via the command prompt. Launch the Command Prompt with the Administrator’s right. Below is the command and please modify it to your desired need

Daily: Type the following command to create a daily task

SCHTASKS /CREATE /SC DAILY /TN "FOLDERPATH\TASKNAME" /TR "C:\SOURCE\FOLDER\APP-OR-SCRIPT" /ST HH:MM
edit scheduled task

Weekly: Type the following command to create a weekly task

SCHTASKS /CREATE /SC WEEKLY /D SUN /TN "FOLDERPATH\TASKNAME" /TR "C:\SOURCE\FOLDER\APP-OR-SCRIPT" /ST HH:MM

Monthly: Type the following command to create a monthly task.

SCHTASKS /CREATE /SC MONTHLY /D 15 /TN "FOLDERPATH\TASKNAME" /TR "C:\SOURCE\FOLDER\APP-OR-SCRIPT" /ST HH:MM


To modify (edit) the Task Scheduler option via the Command: In this guide, we are using the following options to create a scheduled task:

/CHANGESpecifies that you want to edit an existing task
/TNSpecifies the name and location of the task that you want to modify
/STDefines the new time to run the automated routine.

These are just some of the available options. Nonetheless, You can learn more about the options to change a scheduled task by running the SCHTASKS /CHANGE /? command.

Command Prompt

Moreover, To delete a scheduled task: Here are some commands associated with the command prompt to delete a scheduled task.

/DELETESpecifies that you want to delete an existing task.
/TNSpecifies the name and location of the task that you want to delete
Command Prompt window showing the deletion of a scheduled task named 'ChomeTask\Chromeschedule', with confirmation and success message.

Furthermore, This was tested on Windows 10 and Windows Server 2019. However, If you need any further assistance, please let me know.

Thank you for reading this post. Kindly share it with others.

  • Share on X (Opens in new window) X
  • Share on Reddit (Opens in new window) Reddit
  • Share on LinkedIn (Opens in new window) LinkedIn
  • Share on Facebook (Opens in new window) Facebook
  • Share on Pinterest (Opens in new window) Pinterest
  • Share on Tumblr (Opens in new window) Tumblr
  • Share on Telegram (Opens in new window) Telegram
  • Share on WhatsApp (Opens in new window) WhatsApp
  • Share on Mastodon (Opens in new window) Mastodon
  • Share on Bluesky (Opens in new window) Bluesky
Windows Server Tags:TaskScheduler

Post navigation

Previous Post: How to disable power plan in Windows via GPO and Windows Settings
Next Post: NT LAN Manager: How to prevent NTLM credentials from being sent to remote servers

Related Posts

  • qAS
    How to disable the Microsoft Deployment Toolkit Task Sequence property sheet Windows Server
  • Grant Non Domain Admin Privileges to Manage Workstation
    Grant Non-Domain Admin Privileges to Manage Workstation Windows
  • SSL for Localhost on WAMP
    How to configure SSL for WAMP server Windows Server
  • image 16
    How to Fix Windows Error 0x80070057 Windows
  • banner
    How to Edit Windows Hosts File via PowerToy Editor Utility Web Server
  • nonexistent AD
    Fix Active Directory Domain Controller (AD DS) for this domain could not be contacted Windows Server

More Related Articles

qAS How to disable the Microsoft Deployment Toolkit Task Sequence property sheet Windows Server
Grant Non Domain Admin Privileges to Manage Workstation Grant Non-Domain Admin Privileges to Manage Workstation Windows
SSL for Localhost on WAMP How to configure SSL for WAMP server Windows Server
image 16 How to Fix Windows Error 0x80070057 Windows
banner How to Edit Windows Hosts File via PowerToy Editor Utility Web Server
nonexistent AD Fix Active Directory Domain Controller (AD DS) for this domain could not be contacted Windows Server

Comments (4) on “How to create, edit and delete a scheduled task via the Command Prompt”

  1. Avatar photo Mark Ayres says:
    13/10/2021 at 3:36 PM

    Great work Christian,

    Concise and to the point. I was able to get exactly what I needed quickly

    Thanks,
    -Mark

    Log in to Reply
    1. chris Christian says:
      15/10/2021 at 10:05 PM

      Thank you very much for the kind words

      Log in to Reply
  2. Avatar photo Krupa says:
    08/03/2022 at 12:41 PM

    I would like to know, how I can give Start in(optional) path in Task scheduler using command promt?

    Log in to Reply
  3. Avatar photo Don says:
    20/09/2023 at 10:05 PM

    I am looking to create a schedule task that would logout current user if they are ldle for more then 60 minutes

    Log in to Reply

Leave a Reply Cancel reply

You must be logged in to post a comment.

Microsoft MVP

vexpert-badge-stars-5

Virtual Background

VEEAMLEGEND

Categories

veeaam100

Veeam Vanguard

  • Screenshot 2020 08 13 at 03.29.53
    Windows Modules Installer: How to deactivate TrustedInstaller in Windows Windows
  • his may be the server does not exist e1777492961650
    Fix unable to contact Server: This may be the server does not exist Windows Server
  • Slide2 1
    How to deploy WordPress on Azure App Service AWS/Azure/OpenShift
  • ShieldServersSmall
    How to track your device performance and health via Windows Security in Windows 10 Windows
  • Create a self signed cert via IIS
    How to create a self-signed cert via IIS Windows
  • 87a26c60 0001 0004 0000 000001423515 w948 r1.77 fpx54.99 fpy56.04
    Administer LXC Containers: Easy Guide Virtualization
  • google chrome logo 2
    Set Google as default: How to set a browser as default in Windows 10 Windows
  • VBR upgrade to 12.3.1
    Upgrade VBR to 12.3.1: Setup detected inconsistent configuration Backup

Subscribe to Blog via Email

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Join 1,757 other subscribers
  • RSS - Posts
  • RSS - Comments
  • About
  • Authors
  • Write for us
  • Contact
  • Advertise with us
  • General Terms and Conditions
  • Privacy policy
  • Feedly
  • Telegram
  • Youtube
  • Facebook
  • Instagram
  • LinkedIn
  • Tumblr
  • Pinterest
  • Twitter
  • mastodon
  • Bsky

Tags

Active Directory Azure Bitlocker Microsoft Windows PowerShell WDS Windows 10 Windows 11 Windows Deployment Services Windows Server 2016

Copyright © 2026 TechDirectArchive

Loading Comments...

You must be logged in to post a comment.