So you're trying to reformat drive Windows is supposed to handle without a fuss, and instead you're staring at an error, a greyed-out button, or a progress bar that just sits there. Happens more than you'd think. I've seen it dozens of times this year alone on remote support calls, and the fix is almost always one of a handful of things. Let's sort it.
TL;DR
To reformat drive Windows is blocking, start with right-click Format in File Explorer for healthy non-system drives. If that fails, use Disk Management to delete and recreate the volume. For stubborn 'unable to complete format' errors, run chkdsk D: /f /r /x first, then try DiskPart clean as a last resort. Never try to format your system drive from within Windows.
Key Takeaways
- Most reformat drive Windows failures come down to the drive being in use, permission issues, or file system corruption.
- File Explorer format works fine for healthy USB drives and data partitions. Disk Management handles trickier cases.
- Run
chkdsk /f /r /xbefore retrying if you get the 'unable to complete format' error. - DiskPart clean is the nuclear option for drives with dodgy partition tables. Double-check your disk number first.
- You cannot format your Windows system drive from within Windows. You need installation media.
- NTFS for internal drives, exFAT for cross-platform external drives, FAT32 only when something old demands it.
At a Glance
- Difficulty: Easy to Advanced
- Time Required: 5 to 30 mins
- Success Rate: 88% of users
What Causes Reformat Drive Windows Failures?
The most common reason Windows blocks a format is simple: the drive is still in use. It could be a backup tool running in the background, a media player that opened a file on that drive, or even Windows Search indexing it. Windows won't let you format a volume that has open file handles, and it won't always tell you which app is the culprit. That's frustrating, but it's actually Windows protecting you from corrupting a live volume.
Permissions are the second big one. If you try to run the format command in a regular Command Prompt window (not elevated), Windows will refuse. Same goes for DiskPart. Any command-line formatting on Windows needs an administrator session, full stop.
File system corruption and bad sectors cause a good chunk of the 'Windows was unable to complete the format' errors. When the file system metadata is damaged, Windows can't cleanly wipe and rewrite it in the normal way. The format process starts, hits a problem, and bails. Running chkdsk first usually clears enough of the corruption to let a subsequent format succeed.
Then there's the classic mistake of trying to format the system drive from within Windows. You can't. Windows is literally running off that drive. The format option will be greyed out in File Explorer, and even DiskPart will refuse to format the volume that contains the active system. For that, you need to boot from external media and reformat during a clean install.
Finally, some drives just have unusual or corrupt partition tables, especially older USB sticks that have been through a lot, or drives that were previously used in Linux or macOS systems. Windows Disk Management sometimes can't make sense of them, and the only fix is DiskPart's clean command to wipe the partition table entirely and start from scratch.
Reformat Drive Windows: Quick Fix
Start here. This works for the majority of cases involving external USB drives, SD cards, or secondary data partitions on a healthy system.
File Explorer Format Easy
- Open File Explorer
PressWindows + Eand click This PC in the left panel. - Right-click your drive
Find the drive you want to format, right-click it and choose Format. If this option is greyed out, the drive is either your system drive or is in use. - Choose your file system
Pick NTFS for a Windows-only internal or external drive. Pick exFAT if you're sharing it between Windows and Mac or Linux. FAT32 is only needed for older hardware that won't read the others. Tick Quick Format if the drive is healthy. - Click Start and confirm
Windows will warn you that all data will be erased. Confirm, and the format should complete within seconds for a Quick Format on most drives.
More Reformat Drive Windows Solutions
File Explorer format didn't work? Maybe you got the 'unable to complete the format' error, or the option was greyed out entirely. These intermediate fixes cover the most common reasons that happens.
Disk Management Format Easy
- Open Disk Management
PressWindows + R, typediskmgmt.mscand press Enter. Or right-click the Start button and choose Disk Management. - Find your drive
Look at the disk list at the bottom. Match your drive by size and drive letter. Be careful here, especially if you have multiple disks. - Format the volume
Right-click the volume (the coloured bar, not the disk label on the left) and choose Format. Set the file system and click OK, then confirm. - If the volume is corrupt or unallocated
Right-click it and choose Delete Volume first (this erases data), then right-click the resulting unallocated space and choose New Simple Volume. Follow the wizard to assign a drive letter and format it.
Close Apps and Remount the Drive Easy
- Close anything that might be using the drive
Backup software, media players, virtual machines, even Windows Explorer windows that are browsing the drive. All of them can hold file handles open. - Safely eject and reconnect external drives
Use the Safely Remove Hardware icon in the system tray, eject the drive, wait a few seconds, then plug it back in. This clears any stale mount state. - Retry the format
Go back to File Explorer or Disk Management and try again. Nine times out of ten, this is all it takes when the format was failing silently.
Run chkdsk to Fix Corruption First Medium
This one's for the 'Windows was unable to complete the format' error specifically. The drive has corruption that's blocking the format, so you need to clear it first. See the full guide to fixing disk errors on Windows if chkdsk throws up a lot of problems.
- Open Command Prompt as administrator
Typecmdin the Start menu, right-click Command Prompt and choose Run as administrator. Do not skip the administrator part or the command will fail. - Run chkdsk
Type the following and press Enter, replacing D: with your actual drive letter:chkdsk D: /f /r /x
The/fflag fixes errors,/rlocates bad sectors and recovers readable data, and/xforces the volume to dismount so chkdsk can work on it. On large drives this can take a while, so let it finish. - Retry the format
Once chkdsk completes, go back to Disk Management and try formatting the volume again. This fixes the issue in most corruption cases.
Advanced Reformat Drive Windows Fixes
Still stuck? These are the heavy-hitters. DiskPart can sort out drives that Disk Management simply refuses to touch, and a clean Windows install is the only real option when you need to reformat the system drive itself. Read the warnings carefully before you run anything here.
DiskPart Clean and Recreate Advanced
DiskPart is the tool for drives with corrupt or unrecognised partition tables. Disk Management might show the drive as RAW or refuse to format it at all. DiskPart bypasses all of that. The Microsoft DiskPart reference covers every available command if you want to go deeper.
- Open an elevated Command Prompt
Start menu, typecmd, right-click, Run as administrator. - Start DiskPart
Typediskpartand press Enter. You'll see the DiskPart prompt:DISKPART> - List and identify your disk
Typelist diskand press Enter. Find your target disk by its size. Write down the number. Do not guess. - Select the disk
Typeselect disk Xreplacing X with your disk number. DiskPart will confirm: 'Disk X is now the selected disk.' - Clean the disk
Typecleanand press Enter. This wipes the partition table. Everything on this disk is now gone. - Create a new partition and format it
Run these commands one at a time:create partition primaryformat fs=ntfs label=Data quickassignexit
Windows will assign a drive letter automatically. The drive should appear in File Explorer within a few seconds.
Reformat the System Drive via Clean Windows Install Advanced
This is the only way to properly reformat drive Windows is running from. You can't do it from within a live Windows session. If you're also dealing with a corrupted OS alongside a drive you need to wipe, check out our Windows 11 clean install walkthrough for the full preparation steps before you start.
- Create Windows installation media
Download the Media Creation Tool from Microsoft on a working PC. Use it to create a bootable USB drive with at least 8GB of space. - Boot from the USB
Restart the target PC and press the boot menu key (usually F12, F8, or Del depending on your motherboard). Select the USB drive. If the PC boots straight into Windows, check your BIOS boot order. - Choose Custom install
When the Windows setup wizard asks what type of install you want, choose Custom: Install Windows only (advanced). Do not choose Upgrade. - Delete and reformat system partitions
You'll see a list of partitions on the target disk. Delete each one (including the System Reserved, recovery, and main Windows partitions) until the disk shows as a single block of unallocated space. Then click Next and Windows will create and format the necessary partitions automatically.
If you've gone through DiskPart clean and a clean install attempt and the drive is still failing, the problem is almost certainly physical. Bad sectors that can't be remapped, a failing controller, or a dying NAND chip in an SSD. At that point the drive needs replacing, not reformatting. Have a look at our guide to spotting a failing drive on Windows to confirm before you spend more time on it.
Struggling to reformat drive Windows keeps rejecting, or stuck on a 'unable to complete the format' error you can't shift? Our technicians can connect remotely, run DiskPart and chkdsk for you, and get the drive sorted without you having to touch the command line.
Get remote helpPreventing Reformat Drive Windows Problems
Most of these problems are avoidable. The biggest one: back up before you format anything. Sounds obvious, but the number of support calls I get where someone has formatted the wrong drive because the letters looked similar is genuinely alarming. Back up, then format.
Pick the right file system from the start and you'll save yourself a reformat later. NTFS for anything that stays connected to a Windows machine. exFAT if it's going between Windows and a Mac or a Linux box. FAT32 only when something old specifically needs it, like a car stereo or a camera that won't read exFAT. Getting this wrong means reformatting again when the other device can't read the drive.
Run chkdsk /f on a drive if you notice it acting dodgy before you do anything major with it. Catching corruption early means you can fix it without losing data. A full format (not Quick Format) is also a good idea on a drive you suspect has surface issues, because it forces Windows to scan every sector and mark bad ones as unusable.
Never pull a USB drive out while Windows is writing to it. Seriously. That's how you end up with a corrupt file system that won't format cleanly next time. Always use Safely Remove Hardware, even if it feels like an extra step. And keep your storage and chipset drivers updated. Outdated drivers can cause Disk Management to behave oddly, especially with newer NVMe drives.
Reformat Drive Windows: Summary
To reformat drive Windows is blocking, work through the tiers in order. Start with File Explorer for simple cases. Move to Disk Management if that fails. Run chkdsk D: /f /r /x if you're hitting corruption errors, then retry the format. Use DiskPart clean for drives with unreadable or corrupt partition tables. And if you need to reformat the system drive itself, you need Windows installation media and a clean install. Most cases are sorted within 15 to 30 minutes. If DiskPart and a clean install both fail, the drive has a physical problem and needs replacing.


