Skip to content
Follow
Windows

How to Export Scheduled Tasks in Windows 11

Richard
Written by
Richard
Apr 14, 2024 Updated Jun 19, 2026 2 min read
How to Install Microsoft PC Manager on Windows 11
How to Install Microsoft PC Manager on Windows 11

You export scheduled tasks in Windows 11 to save backups of your automation settings or share them with others.

Scheduled tasks are automated processes Windows runs in the background based on specific times or system events, helping you manage backups, launch applications, and more.

Exporting these tasks creates an XML file containing all your configured triggers and actions. For example, you can easily export tasks you’ve set up using Task Scheduler on Windows 11, version 22H2.

⚡ Quick Answer

Open PowerShell in Windows Terminal and use the Get-ScheduledTask cmdlet. You can pipe this to Out-GridView to view them, or to Out-File with Format-Table to save them to a text file for backup or sharing.

Why Export Your Scheduled Tasks?

Exporting your scheduled tasks in Windows 11 is a great way to create a backup copy of all your automated jobs, which is super helpful if you need to move them to a new PC or want to restore them later. It also helps you spot any problems or conflicts that might be stopping your tasks from running correctly by letting you review the exported file.

Additionally, exporting all scheduled tasks can help you troubleshoot any issues related to them. By looking at the exported file, you can spot errors or conflicts that might be stopping your tasks from running correctly.

Export All Scheduled Tasks on Windows

You can easily export all your scheduled tasks on Windows 11 to get a complete list, which is useful for finding problems or just seeing everything that’s set up. To do this, open Windows Terminal, select Windows PowerShell, and then run the command Get-ScheduledTask | Out-GridView to see them all in a window, or use Out-File to save the list to a text file.

Here’s how to do it.

  1. Then, run the command below to export all scheduled tasks on your Windows machine.

    Get-ScheduledTask | Out-GridView

  2. Or export the list into a text file in your Downloads folder by running the command below.

    Get-ScheduledTask | Format-Table -AutoSize | Out-File "$Env:userprofile\Downloads\WindowsSchduledTasks.txt"

  3. Export Only Disabled Scheduled Tasks

If you want to export only the scheduled tasks that are disabled, run the command below.

PowerShell
Get-ScheduledTask | where state -eq 'Disabled' | Out-GridView

Or export the list into a text file in your Downloads folder by running the command below.

PowerShell
Get-ScheduledTask | where state -eq 'Disabled' | Format-Table -AutoSize | Out-File "$Env:userprofile\Downloads\DisabledWindowsSchduledTasks.txt"

Export Only Enabled Scheduled Tasks

If you only need to see or save your active scheduled tasks in Windows 11, you can use a simple command to get just the ones that are ready to run. This helps you focus on your current jobs without seeing any disabled ones. Just open PowerShell and run Get-ScheduledTask | where state -eq ‘Ready’ | Out-GridView to view them, or use Out-File to save them to a text file.

PowerShell
Get-ScheduledTask | where state -eq 'Ready' | Out-GridView

Or export the list into a text file in your Downloads folder by running the command below.

PowerShell
Get-ScheduledTask | where state -eq 'Ready' | Format-Table -AutoSize | Out-File "$Env:userprofile\Downloads\EnabledWindowsSchduledTasks.txt"

That should do it!

Summary

Exporting scheduled tasks in Windows 11 is useful for backups, sharing, or moving tasks, and you can choose to export all of them or just the enabled ones.

Was this guide helpful?

Tags: #Windows 11
Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

📚 Related Tutorials

How to Open Windows Terminal as Admin Automatically
Windows How to Open Windows Terminal as Admin Automatically
How to Change PowerShell Execution Policies in Windows 11
Windows How to Change PowerShell Execution Policies in Windows 11
Where Are Windows Automatic Maintenance Tasks in Windows 11?
Windows Where Are Windows Automatic Maintenance Tasks in Windows 11?

No comments yet — be the first to share your thoughts!

Leave a Comment

Your email address will not be published. Required fields are marked *