Running Scheduled Tasks from the command line

The command is schtasks /run /tn <taskname>

However the taskname must not contain ‘.’. If it does, rename it

C:\1\python>schtasks /RUN /TN "kl_obo_uploader.py"
ERROR: The parameter is incorrect. 

After renaming,

C:\1\python>schtasks /RUN /TN kl_obo_uploader
SUCCESS: Attempted to run the scheduled task "kl_obo_uploader".
Custom Search