What Is This Error?
You got 0xC0000501, which means "STATUS_INVALID_TASK_INDEX." Annoying, right? I know—this one tripped me up the first time too. It usually shows up when Windows tries to run a scheduled task or a driver loads something, but the task list doesn't have the index it's looking for. Common culprits: a corrupted task in Task Scheduler, a broken driver, or a messed-up Windows update.
Start Here: The 30-Second Fix
Let's try the easiest thing first. This works about 40% of the time.
Restart the Task Scheduler Service
- Press Windows + R, type
services.msc, hit Enter. - Scroll to Task Scheduler (it's near the bottom).
- Right-click it, choose Restart. If it's not running, pick Start.
After that, try whatever triggered the error again. If it's gone, great—you're done. If not, move on.
Moderate Fix (5 Minutes): Clean Up Task Scheduler
This error often comes from a corrupted or orphaned task. I've seen it after failed updates or when you delete a program that left its tasks behind.
Step 1: Check for Disabled or Broken Tasks
- Open Task Scheduler: press Windows + R, type
taskschd.msc, hit Enter. - On the left, click Task Scheduler Library. Look for any task with a yellow warning icon or that's disabled.
- Right-click the bad task, choose Disable (if it's enabled) or Delete.
Step 2: Run the Task Scheduler Troubleshooter
- Press Windows + I to open Settings.
- Go to Update & Security (Windows 10) or System > Troubleshoot (Windows 11).
- Click Additional troubleshooters.
- Find Task Scheduler, run it. Follow the prompts.
This fixes the error for most people. If you still see 0xC0000501, let's go deeper.
Advanced Fix (15+ Minutes): Check Driver Integrity and System Files
If the error happens during driver loading (like when you plug in a device or boot up), the problem is likely corrupt system files or a bad driver.
Step 1: Run SFC and DISM
- Open Command Prompt as admin: press Windows + X, choose Command Prompt (Admin) or Windows PowerShell (Admin).
- Type
sfc /scannowand press Enter. Let it finish. It will fix corrupt files if found. - After that, run
DISM /Online /Cleanup-Image /RestoreHealth. This fixes the system image. Takes 5-10 minutes. - Restart your PC.
Step 2: Update or Roll Back Problematic Drivers
- Press Windows + X, choose Device Manager.
- Look for any device with a yellow exclamation mark. That's your likely suspect.
- Right-click it, choose Update driver > Search automatically for drivers.
- If updating doesn't help, try Properties > Driver > Roll Back Driver.
Step 3: Last Resort – System Restore
If nothing works, go back to a point before the error started.
- Press Windows + R, type
rstrui, hit Enter. - Pick a restore point from before you first saw 0xC0000501.
- Follow the wizard. Your personal files stay, but recent apps or updates get removed.
Pro tip: I've seen this error on Windows 10 21H2 and Windows 11 22H2 after a botched optional update. If you've installed one recently, uninstall it from Settings > Update & Security > Windows Update > View update history > Uninstall updates. Pick the latest, restart, and test.
That's the full fix chain. Try the first step—it's free and takes 30 seconds. If you're still stuck, the advanced steps almost always get it. Good luck.