Your 2TB SSD arrived today. You install it, fire up Disk Management, and there it is: 1.8TB showing available. Where's the missing 200GB? Or worse, you've got a massive block of unallocated grey space you can't touch. Before you panic and think about reinstalling Windows 11, stop. I've fixed this hundreds of times via remote support, and the cause is almost always something fixable without wiping anything.
TL;DR
SSD showing wrong capacity size in Windows 11 usually stems from three causes: base-10 vs base-2 calculation (normal), MBR partition scheme on drives over 2TB (fixable), or virtual memory/hibernation files hogging space (easily managed). Most fixes take 30-45 minutes and don't require reinstalling Windows. Convert to GPT if you see unallocated space, disable hibernation if capacity is just slightly short, update drivers and firmware as a catch-all.
Key Takeaways
- Base-10 vs base-2 math explains 7% capacity loss, this is normal, not a fault
- MBR partition scheme hides capacity beyond 2TB; GPT conversion fixes it non-destructively
- Hibernation and virtual memory files consume hidden space; disabling them is safe if you don't use sleep mode
- Cloning to larger SSDs often leaves unallocated space; extend your partition to claim it
- Outdated SSD firmware or drivers rarely cause the issue but are worth updating anyway
- No reinstall needed; all solutions preserve your data and Windows installation
At a Glance
- Difficulty: Medium
- Time Required: 30-45 mins
- Success Rate: 75% of users on first attempt
- Tools Needed: MiniTool Partition Wizard or EaseUS (free versions work)
What Causes SSD Showing Wrong Capacity Size in Windows 11?
Right, let's dig into why this happens. Understanding the root cause is half the battle because it tells you exactly which solution to try first.
The most frequent culprit is simple maths. Manufacturers advertise SSD capacity using base-10 decimal: 1GB equals 1,000MB. Windows 11, however, counts storage using base-2 binary: 1GiB equals 1,024MiB. So a 120GB SSD will always show as approximately 112GB in Windows. That's about 7% less, and it's absolutely normal. Your SSD isn't faulty; you're just looking at two different measurement systems. This catches people off guard constantly, especially when they buy a drive online and see the advertised capacity, then check Disk Management on installation day.
The second major cause is MBR versus GPT partition schemes. If your SSD is larger than 2TB and was initialised with the older MBR (Master Boot Record) format instead of GPT, Windows can only recognise up to 2TB of capacity. Anything beyond that appears as unallocated grey space in Disk Management, completely inaccessible. You'll see it sitting there, mocking you, but you can't use it. This happens frequently when people clone old SSDs to new larger ones, or when the SSD ships with MBR initialisation from the factory (uncommon, but it happens).
The third reason is hidden system files. Your SSD reserves space for virtual memory (PAGEFILE.SYS) and hibernation (hiberfil.sys). These are invisible unless you enable viewing hidden files, but they consume real storage. The paging file typically takes 1-4GB depending on your RAM, and hibernation reserves space equal to your total RAM amount. On a 240GB SSD with 16GB RAM, that's nearly 20GB of reserved space right there. Not always obvious at first glance.
Fourth is the post-cloning aftermath. Clone your old 512GB SSD to a shiny new 1TB drive, and the cloning software copies the original partition size. You end up with a 512GB partition on a 1TB drive, leaving 488GB unallocated and unusable. The software did exactly what you asked, copied everything, but didn't resize the partition to fit the new drive.
Finally, outdated SSD firmware or drivers can misreport capacity, though this is rarer. It's worth checking anyway once you've ruled out the other causes.
Quick Fix: Check What You're Actually Missing
Identify the Real Problem Easy
- Open Disk Management
Press Win + X, select Disk Management from the menu. This shows you the actual partition layout of your SSD. - Right-click your SSD drive
Look at the Volumes tab in Properties. Note the partition style: MBR or GPT. If it says MBR and your SSD is 2TB or larger, that's your culprit. - Look for grey unallocated space
In Disk Management, grey sections mean inaccessible space. If you see a large grey block, that's usually capacity hidden by MBR limitation or post-cloning partition mismatch. - Calculate expected capacity
Multiply advertised GB by 0.9313 to estimate what Windows should show (e.g., 256GB × 0.9313 = 238GB). If your SSD shows less than this, hidden files or partition issues are the cause.
Solution 1: Convert MBR to GPT for Drives Over 2TB
This is the nuclear option but also the most effective for large SSDs. If Disk Management shows your SSD as MBR and it's larger than 2TB, GPT conversion is non-negotiable. The good news: modern partition tools do this without destroying data.
Why this matters: GPT (GUID Partition Table) is the modern standard that supports drives of virtually unlimited size. MBR is from the 1980s and maxes out at 2TB. Windows 11 prefers GPT anyway, especially if your motherboard supports UEFI (it almost certainly does). Converting from MBR to GPT unlocks all that missing capacity.
What you'll need: A complete backup of your SSD to an external drive or cloud storage. This is genuinely critical, not because the conversion usually fails, but because Murphy's Law exists and you don't want to be the exception. Download MiniTool Partition Wizard Free or EaseUS Partition Master Free from their official sites. Both work excellently and the free versions are fully capable for this task.
Convert Partition Scheme from MBR to GPT Advanced
- Back up everything
External hard drive or cloud storage, copy all your important files. Test the backup by opening it from another device. This takes 30 minutes to an hour depending on capacity, but it's insurance. - Download MiniTool or EaseUS
Visit MiniTool Partition Wizard or EaseUS Partition Master. Click the free version download button. Install the tool, run as administrator. - Locate your SSD in the partition tool
Launch the software. You'll see a list of all your drives. Click on your SSD (the one showing MBR). The right panel shows the partition layout and current scheme. - Right-click the disk and select Convert
Don't click the partition, click the disk name itself (or the disk header area). Look for 'Convert MBR to GPT', 'Change Partition Style', or similar wording. Click it. - Review and apply the conversion
The tool shows a preview of what will happen. Click Apply or Execute. The conversion begins. This takes 10-20 minutes. Do NOT close the tool, restart, or power off. Seriously, stability matters here. - Restart and extend your partition
The tool prompts you to restart. Do so. After restart, open Disk Management again. Your SSD now shows GPT. Right-click your C: drive partition and select 'Extend Volume'. Follow the wizard to claim all that unallocated space. Click Finish.
Solution 2: Free Up Space from Hibernation and Virtual Memory
If your SSD is under 2TB and Disk Management shows GPT already, your missing capacity is likely virtual memory and hibernation files. These are invisible but take real space. Here's how to reclaim it.
What happens: Hibernation reserves space equal to your total RAM (16GB RAM = 16GB hiberfil.sys file). Virtual memory (the paging file) reserves 1-4GB depending on system load. On a 256GB SSD, that's 7-8% of capacity gone before you even save a file. If you don't use hibernate mode, and most modern users don't, they just close the laptop lid for sleep mode, disabling it is a free win.
Disable Hibernation and Tune Virtual Memory Easy
- Disable hibernation (frees RAM-sized space)
Press Win + S, type cmd, right-click Command Prompt, select 'Run as administrator'. Typepowercfg.exe -h offand press Enter. The hiberfil.sys file is now deleted. Restart isn't required immediately, but you'll see the change after reboot. - Open System Properties for virtual memory config
Right-click 'This PC' or 'My Computer', select Properties. On the left side, click 'Advanced system settings'. In the System Properties window, click the Settings button under Performance. - Navigate to virtual memory settings
In the Performance Options window, click the Advanced tab. At the bottom, under Virtual memory, click the Change button. - Set custom paging file size
Uncheck 'Automatically manage paging file size for all drives'. Select your SSD drive from the list. Select 'Custom size'. Set Initial size to 1024 MB and Maximum size to your RAM amount in MB (for 8GB RAM, enter 8192). Click Set, then OK. - Restart and verify
Restart your computer. After reboot, check Disk Management or File Explorer properties on your C: drive. You should see an increase in available capacity.
Solution 3: Extend Partition to Use Unallocated Space
You've converted to GPT or disabled hibernation, and now Disk Management shows grey unallocated space. Time to claim it for your actual drive.
Extend Your C: Drive to Fill Unallocated Space Easy
- Open Disk Management
Press Win + X, select Disk Management. - Right-click your C: drive (main partition)
Look for it in the lower pane. It's typically labelled NTFS and shows as blue. Right-click it and select 'Extend Volume'. - Follow the Extend Volume Wizard
Click Next. The wizard shows available space. Accept the default (it selects all unallocated space) and click Next again. Click Finish. - Verify the result
Your C: drive now spans the full SSD capacity. Disk Management shows no more grey space. File Explorer and Disk Management both reflect the full size.
Solution 4: Update SSD Drivers and Firmware
Outdated drivers or firmware cause incorrect capacity reporting in maybe 5% of cases, but it's quick to check and a good catch-all step. Modern SSDs ship with driver bundles and management software that keep capacity reporting accurate.
Update Storage Drivers and SSD Firmware Medium
- Update storage driver in Device Manager
Press Win + X, select Device Manager. Expand the 'Disk drives' section. Right-click your SSD, select 'Update driver', then 'Search automatically for drivers'. Windows checks for updates. If found, install and restart. - Identify your SSD model
In Device Manager, right-click your SSD and select Properties. Click the Details tab. Note the manufacturer and model name (e.g., Samsung 970 EVO Plus, Crucial P5, WD Black SN850). - Download manufacturer's SSD tool
Visit the official website: Samsung Magician (Samsung), Crucial Storage Executive (Crucial), WD Dashboard (Western Digital), or your brand's equivalent. Download the version for Windows 11. - Launch the SSD management software
Install the downloaded tool. Run it. Most tools show firmware version and status immediately. Look for a Firmware Update or Health Check section. - Check for and install firmware updates
If an update is available, the tool displays it. Click Update and follow on-screen instructions. Ensure your laptop is on mains power and don't interrupt the process. This takes 5-10 minutes. - Restart and verify capacity
After the update completes, restart. Open Disk Management and check if capacity now displays correctly. If this solved it, you're done. If not, the issue is partition-related and requires one of the previous solutions.
If You Cloned to a Larger SSD
Cloning from a 512GB drive to a 1TB drive copies everything, including partition sizes, leaving you with a 512GB visible drive and 488GB of ghost space. The fix is the partition extension above, but here's the specific scenario: Open Disk Management, right-click your C: drive, select Extend Volume, and add all unallocated space. Done. If that option is greyed out, you have multiple partitions (likely a recovery partition). Use MiniTool or EaseUS to manually extend the C: partition instead.
If you're seeing a large chunk of unallocated grey space in Disk Management that won't extend, or your SSD is still showing reduced capacity after trying these steps, we can resolve this via remote support in about 30 minutes, no data loss required.
Get remote helpPreventing SSD Showing Wrong Capacity Size in Windows 11
Once you've fixed this, don't let it happen again. A few habits prevent the headache entirely.
Initialise new drives correctly from day one. When you install a brand-new SSD over 2TB, don't just plug it in and assume Windows will handle it. Open Disk Management immediately. If the drive isn't listed, right-click the disk (not a partition) and select 'Initialise Disk'. Choose GPT format, not MBR. This takes 30 seconds and saves you hours later.
Update firmware before heavy use. After installing a new SSD, download your manufacturer's SSD tool and check for firmware updates before copying important files. Most SSDs ship with firmware that's months old by release date. A quick firmware update ensures capacity reporting is accurate from the start.
Set realistic capacity expectations. Multiply advertised GB capacity by 0.9313 to estimate what Windows will show. A 2TB SSD displays as approximately 1.86TB. This isn't a bug; it's just how the maths works. Knowing this saves panic on installation day.
When cloning, use smart cloning software. AOMEI Backupper and Macrium Reflect both have 'Intelligent Copy' or 'Resize' options that automatically expand partitions to fill the new drive's capacity. This prevents the post-clone unallocated space nightmare entirely.
Manage virtual memory proactively. On SSDs under 512GB, consider moving the paging file to a secondary HDD if you have one, or set custom size limits (1-2GB) rather than letting Windows manage it automatically. This preserves SSD space for actual data.
Run regular health checks. Use your manufacturer's SSD tool every few months to verify firmware status and health. Catching issues early prevents capacity reporting errors and unexpected failures.
SSD Showing Wrong Capacity Size in Windows 11: Summary
Your SSD showing wrong capacity in Windows 11 is almost never a hardware fault. Nine times out of ten, it's one of five straightforward issues: base-10 vs base-2 maths (completely normal), MBR partition scheme on large drives (fixable with non-destructive GPT conversion), hibernation and virtual memory files (manageable), post-cloning partition mismatch (extend the partition), or outdated firmware (update it). None of these require reinstalling Windows. A backup, the right partition tool, and 30-45 minutes of your time solves it. Start by checking your partition scheme in Disk Management. If it says MBR and your drive is over 2TB, go straight to the GPT conversion, that's your issue. If it's already GPT, disable hibernation and extend your partition. If capacity is still slightly short after all that, update your SSD firmware as a final check. You'll have your full capacity back, and your SSD will run smoothly for years.


