I'm trying to make a scheduled task for a small software I had written for a friend,
I'm using
Schtasks /create /SC MINUTE /MO 30 /tn JoesInventoryReader /tr C:\joes.exe /RL HIGHEST
But for some reason, whenever we reboot the computer, this task is removed.
I was reading all of Schtasks parameters and none mentioned anything related to automatic removal.
Help? I've been trying to fix that for over an hour. Thanks in advance everyone
Your task is triggered once and then runs repeatedly.
If you want to execute the program regularly, you should use
/SC DAILY(or weekly, monthly) or/SC ONLOGON.Use
/RIto define the repetition and/DUto define the length of the repetition: