I\'m trying to schedule a task in Windows 10, on the event of \"At log on\" in order to start several programs, but it won\'t run after several trial/error. The task is configur
In my case I launch task using another domain account but this account doesn't had rights for this. I added rights for launch task using this instruction.
The main reason for this is if the scheduler's first run is set in the past or simply hasn't run yet. To fix:
Try open "trigger" tab, and edit the trigger detail. I found here my trigger was not enabled, I've just enabled it. This could generate error 0x41303.
I had this problem as well (Windows Server 2019), with error 0x41303 and Last Run Time set to 30/11/1999.
When I changed the start time to a future time instead of past (i.e. 2 minutes from current time), the scheduled task ran successfully (result: 0x0) and repeated just fine per the trigger.
Got the same error code when scheduling a python script, fixed it by changing Conditions > Network to "Any connection" or disabling it entirely.
I had spaces in my script that was being called and had to change it to have quotes around it. Maybe this will help someone