How to Export All Scheduled Tasks from Server to CSV (for Reporting)

 Want a quick way to generate a report of all scheduled tasks on your Windows system? Here's a step-by-step guide to export everything into a neat .csv file.


✅ Step 1: Run the Export Command

  1. Press Win + R to open the Run dialog.

  2. Type cmd and hit Enter to open the Command Prompt.

  3. Navigate to the Downloads folder:

    cd Downloads
  4. Enter the following command to export your scheduled tasks:

    c:\windows\system32\schtasks /query /FO CSV /V > scheduleList.csv
  5. Press Enter.

This will create a file called scheduleList.csv in your Downloads folder.


✅ Step 2: Locate the File

  1. Go to your Downloads folder.

  2. Look for the file scheduleList.csv.


✅ Step 3: Check the Output

Open scheduleList.csv in Excel or any text editor. You’ll see all the scheduled tasks listed in a table format like below.
List job in Window system bằng command line
List job in Window system

📌Note: 

You can learn more about ths schtasks command and its options here:

🔗 Microsoft Official Documentation

Post a Comment

0 Comments