UK tech experts · info@vividrepairs.co.uk
Vivid Repairs
A Windows 11 laptop on a modern desk showing a reset error message on a blue recovery screen
Fix It Yourself · Troubleshooting

Windows factory reset not working

Updated 13 August 202611 min read
As an Amazon Associate, we may earn from qualifying purchases. Our ranking is independent.

When Windows factory reset not working is the situation you're staring at, it's easy to assume the worst. But here's the thing: in the vast majority of cases I see through remote support, the PC itself is fine. The problem is almost always a damaged recovery component, a corrupted system file, or a disk error that's quietly blocking the reset process. Fixable. Every time, there's a logical path through it.

TL;DR

If Windows factory reset not working is your problem, start by retrying the reset through Settings, install pending updates, and try Safe Mode. If it still fails, run sfc /scannow and DISM /Online /Cleanup-Image /RestoreHealth in an elevated Command Prompt, check WinRE status with reagentc /info, and run chkdsk /f. If all else fails, boot from Windows installation media and do a clean install.

⏱️ 13 min read ✅ 85% success rate 📅 Updated July 2026

Key Takeaways

  • Windows factory reset not working is almost always caused by corrupted system files, a disabled Windows Recovery Environment, or disk errors.
  • Running sfc /scannow and DISM repairs the components the reset process depends on.
  • If WinRE is disabled, reagentc /enable brings it back without reinstalling Windows.
  • Safe Mode bypasses third-party software that can silently block the reset.
  • When local recovery is too far gone, bootable Windows media is your cleanest route out.

At a Glance

  • Difficulty: Medium
  • Time Required: 15 to 45 mins
  • Success Rate: 85% of users

What Causes Windows Factory Reset Not Working?

The reset process in Windows isn't a single operation. It's a chain of dependent components, and if any link in that chain is broken, the whole thing stops. Understanding which link is broken tells you exactly which fix to apply, which is why I always start with a quick diagnosis rather than just throwing commands at the problem.

The most common culprit I see is corrupted Windows system files. Windows updates, abrupt shutdowns, or aggressive third-party cleanup tools can damage the files that the reset workflow reads from. When Reset this PC tries to run and hits a corrupted file, it throws a generic error like "There was a problem resetting your PC" and stops dead. No detail, no direction. Helpful.

Right behind that is a disabled or damaged Windows Recovery Environment (WinRE). WinRE is the separate recovery layer that sits outside your main Windows installation. It's what powers the Troubleshoot menu when you boot into Advanced Startup. If WinRE gets disabled (which can happen after certain disk partition changes or botched updates), the reset option either disappears or fails silently. You can check its status in about ten seconds with a single command, which I'll cover below.

Disk and file-system errors are the third major cause. A drive with bad sectors or a corrupted NTFS file system can cause the reset to fail partway through, sometimes leaving Windows in a worse state than before. This is why running chkdsk before attempting a reset is worth the time. I've seen machines where chkdsk found and fixed errors that two previous reset attempts had simply crashed into.

Pending Windows updates are a sneaky one. If your system has updates downloaded but not yet installed, the reset process can conflict with them. It's not obvious, and Microsoft's error messages don't tell you this is the reason. But installing outstanding updates and rebooting before attempting the reset fixes this more often than you'd expect. And finally, a broken or missing recovery partition means the local reset image simply isn't there. In that case, you'll need external installation media. No way around it.

Windows Factory Reset Not Working: Quick Fix

Start here. These steps take five to ten minutes and fix a good chunk of cases, particularly when the reset started failing after a recent Windows update or when you've only tried it once from the desktop.

1

Retry via Settings, Safe Mode, or WinRE Easy

  1. Install pending updates first
    Go to Settings > Windows Update and install everything available. Reboot fully. Then try Settings > System > Recovery > Reset this PC again. Don't skip this step. Pending updates block the reset more often than most people realise.
  2. Try from Safe Mode
    Hold Shift and click Restart from the Start menu or login screen. Go to Troubleshoot > Advanced Options > Startup Settings > Restart, then press 4 for Safe Mode. Once in Safe Mode, go to Settings > System > Recovery and attempt the reset. Safe Mode stops third-party software from interfering.
  3. Try from WinRE directly
    If Safe Mode doesn't work, use the same Shift+Restart path to get to Troubleshoot > Reset this PC from within the Windows Recovery Environment. This bypasses the desktop entirely and sometimes succeeds when the desktop path won't.
  4. Verify it worked
    If the reset starts and reaches the progress screen (showing a percentage), you're through. Let it run. It can take anywhere from 20 minutes to over an hour depending on drive speed.
Reset progress screen appears and begins counting up. Job done.
If the reset still fails after all three paths above, the issue is deeper than a simple retry can fix. Move to the intermediate fix below.

More Windows Factory Reset Not Working Solutions

This is where most cases get sorted. The intermediate fix targets the actual underlying damage: corrupted system files, a broken Windows image, a disabled WinRE, and disk errors. I'd say this section fixes around 70% of the cases I see that weren't resolved by the quick fix above. It takes 15 to 30 minutes, and you'll be running commands in an elevated Command Prompt, so follow each step carefully.

2

Repair System Files, WinRE, and Disk Errors Medium

  1. Open Command Prompt as administrator
    Press Windows key, type cmd, right-click Command Prompt, and select Run as administrator. You need elevated privileges for every command in this section.
  2. Run System File Checker
    Type the following and press Enter:
    sfc /scannow
    This scans all protected Windows system files and replaces corrupted ones from a cached copy. It can take 10 to 20 minutes. Don't close the window. When it finishes, you'll see one of three messages: no integrity violations found, it repaired files successfully, or it found files it couldn't repair. The first two are good. The third means you need DISM next (which you're running anyway).
  3. Run DISM to repair the Windows image
    Type:
    DISM /Online /Cleanup-Image /RestoreHealth
    DISM contacts Windows Update to download a clean copy of any damaged image components. This is why you need an active internet connection for this step. It typically takes 10 to 25 minutes. According to Microsoft's own support documentation, running DISM before or after SFC gives the best chance of a full repair.
  4. Check and re-enable WinRE
    In the same elevated Command Prompt, run:
    reagentc /info
    Look at the Windows RE status line. If it says Disabled, run:
    reagentc /enable
    You should see a confirmation that WinRE has been enabled. If you get an error here, it may indicate the recovery partition itself is missing or damaged, which puts you in advanced territory. For more detail on how WinRE works under the hood, Microsoft's WinRE technical reference is worth a read.
  5. Run chkdsk to fix disk errors
    Type:
    chkdsk /f
    You'll likely be told the drive is in use and asked if you want to schedule the check for next restart. Type Y and press Enter. Then reboot. Windows will run the disk check before loading, which can take several minutes on a large or fragmented drive. Don't interrupt it.
  6. Retry the reset
    After the reboot following chkdsk, go to Settings > System > Recovery > Reset this PC and try again. At this point, with system files repaired, WinRE enabled, and disk errors cleared, the reset should proceed normally.
Reset this PC launches successfully and moves to the confirmation screen asking whether to keep or remove your files.
Do not run chkdsk on an SSD with known firmware issues without checking the manufacturer's guidance first. On healthy SSDs, chkdsk /f is safe and recommended.

One thing worth knowing: if SFC reports "Windows Resource Protection found corrupt files but was unable to fix some of them", don't panic. Run DISM first (if you haven't already), reboot, then run SFC again. The second SFC pass often succeeds after DISM has repaired the image it pulls from. I've seen this take three reboots before it stuck, so be patient with it.

If you're dealing with a PC that's also been running slowly or crashing before this reset attempt, there's a chance the underlying issue is more than just reset components. A failing drive or persistent software corruption can cause both problems. In that case, also check out our guide on fixing a slow Windows PC, which covers drive health checks in more detail.

Advanced Windows Factory Reset Not Working Fixes

Right. If you've worked through everything above and the reset is still failing, the local recovery setup is too damaged to fix from within Windows. The recovery image is gone, the partition is broken, or the damage is deep enough that the repair tools can't reach it. This is where you go outside Windows entirely and use installation media. It sounds more dramatic than it is.

3

Boot from Recovery Media and Reinstall Windows Hard

  1. Create bootable Windows installation media
    On a working PC, download the Windows Media Creation Tool from Microsoft's official site. Run it, select Create installation media for another PC, and follow the prompts to write a bootable Windows installer to a USB drive of at least 8GB. This process takes around 20 to 40 minutes depending on your connection speed.
  2. Boot your PC from the USB drive
    Plug the USB into the broken PC and restart. Press the boot menu key during startup (usually F12, F10, or Esc depending on your manufacturer) and select the USB drive. If you're not sure which key to use, check your PC or motherboard manufacturer's support page.
  3. Try Startup Repair first
    When the Windows setup screen appears, click Repair your computer (bottom-left, not Install now). Go to Troubleshoot > Advanced Options > Startup Repair. This attempts to fix boot and recovery components without touching your files. It's worth trying before going straight to a reinstall. Microsoft's recovery options page explains what each option does if you want more context.
  4. Perform a clean install if Startup Repair fails
    If Startup Repair doesn't fix the problem, go back to the setup screen and this time click Install now. When asked for a product key, click I don't have a product key (Windows will activate automatically after install if your licence is linked to your Microsoft account or motherboard). Choose Custom: Install Windows only (advanced), select your system drive, and proceed. This completely replaces Windows. Your personal files on that partition will be removed, so back up anything important first if you can still access them.
  5. Check for OEM recovery options
    If your PC is from a manufacturer like Dell, HP, Lenovo, or ASUS, check whether it has a dedicated recovery partition accessible via a key press at startup (often F11 or a branded key). Some manufacturers also provide their own recovery image download tools. These can restore Windows to the exact factory state, including drivers and pre-installed software, which a generic Windows install won't do.
Windows installs cleanly, boots to the setup screen, and you're back to a working system.
A clean install from media is actually a more thorough reset than Reset this PC ever was. It rebuilds Windows from scratch rather than restoring from a potentially dodgy local image. Many technicians (myself included) prefer it when the local recovery is suspect.

If your PC has been struggling with other issues alongside the reset failure, like persistent blue screens or startup errors, it's worth checking our Windows blue screen of death fix guide after you've got Windows reinstalled. Sometimes the reset failure and the BSODs share the same root cause, and it's good to confirm the underlying problem is actually gone.

Preventing Windows Factory Reset Not Working

Most cases of Windows factory reset not working are preventable. Here's what actually matters, in order of importance:

1. Keep Windows updated. This is the single most effective thing. Windows updates keep the recovery components, WinRE, and the reset image current. Machines that defer updates for months are far more likely to end up with a broken reset path. Don't ignore the update prompts.

2. Verify WinRE periodically. Takes about ten seconds. Open an elevated Command Prompt and run reagentc /info. If it ever shows as Disabled after a major update or a disk change, run reagentc /enable straightaway before it becomes a problem. I'd suggest checking this after every major Windows feature update.

3. Shut down properly and watch your disk health. Abrupt power cuts and consistently full drives are two of the most common causes of file-system corruption. Keep at least 15% of your system drive free. Windows needs that space for updates, temporary files, and recovery operations. And if Windows starts warning you about drive errors, don't dismiss them.

4. Create recovery media in advance. Download the Windows Media Creation Tool now, while everything works, and write a bootable USB. Keep it somewhere safe. If your recovery partition ever gets wiped or corrupted, that USB is the difference between a 30-minute fix and a panicked afternoon. It's the kind of thing people only wish they'd done before the problem hit.

5. Be careful with partition tools and aggressive cleanup software. Tools that resize or delete partitions can silently remove the recovery partition. Aggressive disk cleaners sometimes target recovery files they shouldn't touch. If you're not sure what a partition does, leave it alone. And back up your files before any major disk operation. Our Windows backup guide covers the quickest ways to get a reliable backup in place.

Windows Factory Reset Not Working: Summary

So that's the full picture. Windows factory reset not working is almost always a software problem, not a hardware one, and it follows a clear diagnostic path. Start with the simple retries through Settings and Safe Mode. If those don't work, run sfc /scannow, DISM, check WinRE with reagentc /info, and clear disk errors with chkdsk /f. That combination fixes the majority of cases. If the local recovery is too far gone, bootable installation media gets you to a clean Windows install without needing to replace anything. The machine almost certainly isn't broken. The recovery setup is, and that's fixable.

Frequently Asked Questions

This error typically points to corrupted system files, a damaged recovery environment, or disk errors. Start with the Intermediate fix section to run SFC and DISM, then check WinRE status with 'reagentc /info' in an elevated Command Prompt.

Open Command Prompt as administrator and run: reagentc /info. If the output shows WinRE Status as Disabled, run: reagentc /enable to restore it, then reboot and try the reset again.

Yes. Boot into Safe Mode using F8 at startup or Shift+Restart from the login screen, then go to Settings > System > Recovery and attempt Reset this PC from there. Safe Mode strips out third-party software that can block the reset process.

Reset this PC uses your local recovery image to restore Windows, with an option to keep your personal files. A clean install uses external installation media and completely overwrites Windows. A clean install is necessary when the local reset is too damaged to run.

Yes, you do. Download the Windows Media Creation Tool on a working PC, run it, and follow the prompts to write a bootable Windows installer to a USB drive of at least 8GB. You can then boot your broken PC from that USB to repair or reinstall Windows.