Power went out while my PC was running. When it came back on, my computer wouldn’t boot. Just sat there showing a black screen, or it would get to the Windows logo and loop back into Startup Repair. This is what I went through to get it working again.
Step 1: Check the basics before assuming the worst
First thing to do is make sure everything is properly connected. It sounds obvious, but during a power event it’s not uncommon for a cable to shift slightly. Unplug the power cord, wait 30 seconds, plug it back in directly to the wall socket and try again. If you were using a surge protector, check if it has a circuit breaker that tripped. Reset it before plugging back in.
For laptops: remove the battery, hold the power button for 5 seconds, put the battery back in and try booting.
Step 2: PC turns on but won’t boot into Windows
If the fans spin and you get to the Windows logo but it loops or goes to a blue screen, this is usually a corrupted boot file or corrupted file system from the hard shutdown.
Let Windows try Startup Repair first. When the PC boots and fails, it should offer to run Startup Repair automatically. Let it run. It often catches BCD corruption on its own.
If Startup Repair fails, try this manually:
- Boot from a Windows installation USB (or restart 3 times to force Windows RE)
- Go to Troubleshoot > Advanced options > Command Prompt
- Run these commands one at a time:
bootrec.exe /rebuildbcd
bootrec.exe /fixmbr
bootrec.exe /fixboot
- Restart and test
If you’re still stuck, also run:
chkdsk c: /r /x
sfc /scannow
These scan for disk errors and corrupted system files.
Step 3: Check if Fast Startup caused the issue
Windows Fast Startup saves a hibernation file when you shut down. If that file got corrupted during the outage, it’ll block normal booting.
From Command Prompt in Windows RE, run:
powercfg /hibernate off
This deletes the hibernation file and forces a clean boot next time. Once you’re back in Windows you can re-enable it if you want.
Step 4: PC won’t turn on at all
If you press the power button and nothing happens, that points to a hardware issue.
- Check the surge protector circuit breaker as mentioned above
- If the PSU fan doesn’t spin, the power supply may need replacing
- Look through the case vents for a green LED on the motherboard. If it’s blinking rapidly, the PSU is in a protected state. Unplug for 30 minutes then retry.
- If a flashing LED persists after reconnecting, the PSU may be damaged
What actually fixed mine
It was the Fast Startup hibernation file. Disabling hibernate from the recovery command prompt cleared it and the machine booted normally. Ran chkdsk afterwards and it found and repaired a few corrupted sectors.
If you’re getting hit by outages regularly, a UPS (uninterruptible power supply) is worth it. It lets the system shut down gracefully instead of cutting out hard.
Here’s a decent YouTube video if you want to follow along visually: [search “Windows 10 won’t boot after power outage fix” on YouTube, there are several good walkthroughs with the Recovery Environment steps shown]