Hi Bryan L,
Welcome to Microsoft Q&A!
I'm sorry to hear your PC keeps unexpectedly waking from sleep despite disabling wake timers. I understand how frustrating it is, especially after thorough troubleshooting and checking all scheduled tasks. From your description, you've already done everything right, and the remaining issue appears to be tied to a protected system task (Orchestrator). Here’s what you can try next:
1 - Handle protected Orchestrator Tasks
- Open Task Scheduler > Microsoft > Windows > UpdateOrchestrator
- Right-click the task (e.g.,
Reboot,Maintenance) > Properties - Uncheck Wake the computer to run this task if available
- If that still doesn't work > Control Panel > Security and Maintenance
- Open Maintenance > Change maintenance settings
- Uncheck Allow scheduled maintenance to wake up my computer at the scheduled time
- Temporarily pause Windows Update if needed.
2 - Revoke access to Orchestrator:
- Open File Explorer > navigate to (or find your PC's path to Orchestrator):
C:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator - Denying the SYSTEM security principal access.
- Put an empty file there named
Schedule Wake To Work
3 - Disable Wake on LAN in BIOS/UEFI
- Restart your PC > enter BIOS/UEFI by pressing F2, F12, or Del (depending on the model)
- Disable Wake on LAN
- Enable ErP Ready (cuts power to USB/network in sleep)
Disclaimer: Microsoft provides no assurances and/or warranties, implied or otherwise, and is not responsible for the information you receive from the third-party linked sites or any support related to technology. If you are going to modify BIOS Settings, please back up all your personal files first to ensure you do not lose data.
4 - Block the Orchestrator Task (Admin workaround solution)
- Open Command Prompt as Administrator > run the following prompts:
schtasks /Change /TN "\Microsoft\Windows\UpdateOrchestrator\Reboot" /DISABLEschtasks /Change /TN "\Microsoft\Windows\UpdateOrchestrator\USO_UxBroker" /DISABLE - Prevent it from re-enabling with
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v NoAutoRebootWithLoggedOnUsers /t REG_DWORD /d 1 /f
If your PC still wakes up unexpectedly, use PowerShell to try to disable ALL tasks set to wake the PC. Run the following:
Get-ScheduledTask | Where-Object { $_.Settings.WakeToRun -eq $true } | Disable-ScheduledTask
I hope the information above helps. Please do not hesitate to let me know if you'd like me to help with any of these steps or if the issue persists after applying the changes.
Warm Regards,
Lychee-MSFT | Microsoft Q&A Support Specialist
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.