powercfg -lastwake who wakes me up?powercfg -devicequery wake_armed who could wake me up? Get-ScheduledTask | where {$_.settings.waketorun} find all scheduled tasksGet-ScheduledTask -TaskPath "\Microsoft\Windows\.NET Framework\" | Disable-ScheduledTask Disable somePower Options > Advanced settings > Sleep > Allow wake timers ⇒ Disable
look: https://forums.virtualbox.org/viewtopic.php?f=6&t=69723
I was eventually able to disable the Reboot task. Firstly, I tried the following line in cmd:
SCHTASKS /Change /TN "Microsoft\Windows\UpdateOrchestrator\Reboot" /DISABLE
It did not work, and the error message said I do not have sufficient privileges to modify the task (even though I work on a Windows admin account). However, thanks to this message, I was able to find information about NSudo program. Per the already linked hint, I used it in a TrustedInstaller mode to start cmd and - lo and behold - SCHTASKS now worked perfectly, allowing me to disable the Reboot task. Windows is user friendly, they said.
credit: https://superuser.com/a/1269146