NTS: Get a list of windows scheduled tasks
I wanted a bit more detail, specifically the path of what was scheduled, so I used the command schtasks /query /v /fo LISTwhich produces a detailed list of all tasks. This includes additional information such as the task being run, schedule information etc
Finally, to get the output in a CSV format I used schtasks /query /v /fo CSVThis produces the same quantity of detailed information as LIST.So, finally, by piping the output schtasks /query /v /fo CSV > tasks.csvI get a tasks.csv file which I can open in Excel and review for correctness and completeness.