Skip to content
Follow
Windows

How to Export Scheduled Tasks in Windows 11

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

Exporting scheduled tasks in Windows 11 lets you save copies of your automated actions, useful for backing them up or moving them to another PC.

Scheduled tasks are like little helpers that run programs or scripts automatically on your computer, based on times or events you set. Think of them for things like running backups or starting certain apps.

When you export a task, Windows 11 creates an XML file that holds all the settings for that task, like when it should run and what it should do. This is handy for sharing your setup or restoring it if something goes wrong with your PC.

For instance, you might export tasks you’ve set up in Task Scheduler on Windows 11, version 23H2.

⚡ 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 good way to back up your automated jobs. This backup is useful if you move to a new computer or need to bring tasks back later. Reviewing an exported file can help you identify issues that might prevent your tasks from working correctly.

Exported scheduled tasks help you troubleshoot issues. Reviewing the exported file allows you to find errors or conflicts that might prevent your tasks from running correctly.

Export All Scheduled Tasks on Windows

Exporting all scheduled tasks in Windows 11 gives you a full list, which is helpful for finding problems or seeing exactly what’s running on your computer. You can view them all in a window using Windows Terminal and PowerShell with the command Get-ScheduledTask | Out-GridView, or save this list to a text file using the Out-File command.

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, you can use a command in PowerShell. This helps you focus on the jobs that are currently active. You can view them with Get-ScheduledTask | where state -eq ‘Ready’ | Out-GridView, or save the list to a 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. 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 *