Skip to content
Follow
Windows

How to Export Scheduled Tasks in Windows 11

Richard
Written by
Richard
Apr 14, 2024 Updated Jul 10, 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 smart for backing up your automated jobs. This backup is useful if you move to a new computer or need to restore tasks later. Reviewing an exported file can also help you find issues that might stop your tasks from running correctly.

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

Exporting all scheduled tasks on Windows 11 gives you a complete list, helpful for spotting problems or seeing what’s running. You can view them all in a window using Windows Terminal and PowerShell with the command Get-ScheduledTask | Out-GridView. Alternatively, use Out-File to save this full 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

To export only your enabled scheduled tasks in Windows 11, use a simple command in PowerShell. This helps you focus on active jobs without seeing disabled ones. Run Get-ScheduledTask | where state -eq ‘Ready’ | Out-GridView to view them, or use Out-File to save this focused list 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 *