Exporting/Importing all Scheduled Tasks with PowerShell
I'm just going to leave this here where I can find it in future.
Export:
$SchedRoot = New-Object -ComObject("Schedule.Service")$SchedRoot.Connect("COMPUTERNAME")$OutRoot = "C:\Temp\Tasks"$ … more