Running Scheduled Tasks with PowerShell
You can run any task within Task Scheduler through PowerShell using the following command, replacing enterTaskNameHere with the name of the task to run:
get-scheduledtask -taskname "enterTaskNameHere" | Start-scheduledtask