Diagnosing a Windows standby exit problem

To support me, you can subscribe to the channel, share and like the videos, disable your ad blocker or make a donation. Thank you!

Hello,

A new video showing how to diagnose a standby exit problem in Windows.

This can be useful if your computer wakes from sleep or boots unexpectedly.

For Windows standby problems, it’s this way:
https://www.altf4-formation.fr/fr/diagnostiquer-un-probleme-de-mise-en-veille-sous-windows

Commands used in the video

# Show information about what took the PC out of the last standby.
powercfg -lastwake
# Or (powercfg accepts -or / for parameters)
powercfg /lastwake
# List the peripherals that can wake the PC from standby
powercfg -devicequery wake_armed
# Check whether wake-up timers are active
powercfg -waketimers
# List enabled scheduled tasks that can wake the PC from standby
Get-ScheduledTask | Where-Object { ($_.settings.waketorun) -and ($_.State -ne "Disabled") }
# Display events related to the watch
Get-WinEvent -ProviderName Microsoft-Windows-Power-Troubleshooter | Out-GridView

Video : Diagnosing a Windows standby exit problem

Related links