Task scheduler to start published project problem

Use schtasks to Manually Run the Task

Try running the scheduled task from the command line to see if it reveals more details:

  1. Open Command Prompt (Run as Administrator)**.
  2. Run this command:

cmd

schtasks /run /tn “EbayAuthRefreshV2”

  1. If it fails, check the error message.

If it gives an Access Denied error, it’s likely an issue with the user permissions or execution context

Change the Execution Context (User Account)

Try running the task as a different user:

  1. Open Task Scheduler → Right-click your task → Properties.
  2. Under General → Security Options:
    Select “Run whether user is logged on or not”.
    Click Change User or Group→ Use SYSTEM or another admin account.
    Check “Run with highest privileges”.
    3.Re-run the task.

Please check let me know

1 Like