Skip to content

Commit b45f251

Browse files
authored
Merge pull request #8270 from v-lianna/CI_3889
AB#3889 troubleshoot-scheduled-tasks-not-running
2 parents ffd12bc + 6f2b6ec commit b45f251

3 files changed

Lines changed: 59 additions & 0 deletions

File tree

53.5 KB
Loading
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
---
2+
title: Scheduled Tasks Not Running
3+
description: Troubleshoot issues where a scheduled task doesn't run as expected in Task Scheduler.
4+
ms.date: 03/06/2025
5+
manager: dcscontentpm
6+
audience: itpro
7+
ms.topic: troubleshooting
8+
ms.reviewer: kaushika, jianyingtang, warrenw, v-lianna
9+
ms.custom: sap:System Management Components\Task Scheduler, csstroubleshoot
10+
---
11+
# Troubleshoot issues with scheduled tasks not running
12+
13+
This article helps you troubleshoot issues where a scheduled task doesn't run as expected in Task Scheduler.
14+
15+
When you configure and schedule a task using Task Scheduler, you might encounter one of the following issues:
16+
17+
- The task doesn't start at the scheduled time.
18+
- The task status remains in **Running** indefinitely.
19+
- The task completes, but the expected actions don't occur.
20+
- Errors appear in the **History** tab or the **Last Run Result** column in Task Scheduler.
21+
22+
To troubleshoot the issue, follow these steps:
23+
24+
1. [Test your script before putting it into a task](#step-1-test-your-script-before-putting-it-into-a-task)
25+
2. [Use the Status column and the History tab to check task status](#step-2-use-the-status-column-and-the-history-tab-to-check-task-status)
26+
3. [Verify errors in the task history](#step-3-verify-errors-in-the-task-history)
27+
28+
## Step 1: Test your script before putting it into a task
29+
30+
Task Scheduler is the trigger of a task. If you use a script, a complete script is the prerequisite to configure a scheduled task. To make sure that there's no error before putting it into a task, test your script directly with tools like PowerShell and Command Prompt.
31+
32+
## Step 2: Use the Status column and the History tab to check task status
33+
34+
Check the **History** tab for specific task events. This tab allows you to determine if the task is triggered and successfully completed. For example:
35+
36+
:::image type="content" source="./media/troubleshoot-scheduled-tasks-not-running/task-scheduler-history-tab.png" alt-text="Screenshot that shows the History tab of Task Scheduler.":::
37+
38+
If the task isn't triggered, try a manual trigger. Set the trigger start time at a future time if it's a **On a schedule** trigger, and save the task again (re-register the task). If it's still not triggered, collect the task configuration by right-clicking the task and exporting it to an `.xml` file for initial checking.
39+
40+
If it's already triggered, use the **Status** column and the **History** tab to check for any errors during the task execution.
41+
42+
Normally, the task should be in **Ready** status for it to be manually or automatically triggered. If it remains in the **Running** status for a long time, check the actions in your task. For example, if the task runs a customized application or a PowerShell script, locate the process in Task Manager. Then troubleshoot why the process keeps running and doesn't exit by collecting dumps or other traces of a specific process.
43+
44+
## Step 3: Verify errors in the task history
45+
46+
If there are any errors while completing the task or if the task completes successfully but doesn't show an expected output, use the following methods to further narrow down the issue:
47+
48+
- Use a simplified script to determine if the issue is related with the script or the application.
49+
- [Enable transcripts](/powershell/module/microsoft.powershell.core/about/about_group_policy_settings#turn-on-powershell-transcription) to check for errors while running the PowerShell script. For batch script or others, add more output commands to trace the failure for a specific command.
50+
- Change the **Security options** to **Run only when user is logged on** to determine if the issue is with security context.
51+
52+
## Logs to be collected
53+
54+
If the preceding steps don't resolve the issue, and you consider reaching out to Microsoft Support for further assistance, gather the following information beforehand:
55+
56+
- Task configuration (the exported `.xml` file)
57+
- Task Scheduler event log (**Event Viewer** > **Applications and Services Logs** > **Microsoft** > **Windows** > **TaskScheduler** > **Operational**)

support/windows-server/toc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2585,6 +2585,8 @@ items:
25852585
href: ./system-management-components/scheduled-task-not-run-upon-reboot-machine-off.md
25862586
- name: Scheduled tasks reference incorrect user profile paths
25872587
href: ./system-management-components/scheduled-tasks-reference-incorrect-user-profile.md
2588+
- name: Troubleshoot issues with scheduled tasks not running
2589+
href: ./system-management-components/troubleshoot-scheduled-tasks-not-running.md
25882590
- name: WinRM
25892591
items:
25902592
- name: Error 0x80090322 when connecting PowerShell to remote server via WinRM

0 commit comments

Comments
 (0)