Skip to content

Your 64 GB drive shows 57 GB, and one of those numbers is marketing

Gigabytes against gibibytes, hidden partitions and formatting overhead. What is normal and what is a failing drive.

5 min read

A 64 GB drive shows as 57.6 GB, a 1 TB drive as 931 GB, and a 500 GB drive as 465 GB. None of these is a fault, and the arithmetic is the same every time.

Gigabytes against gibibytes

Manufacturers count a gigabyte as 1,000,000,000 bytes. Windows counts a gibibyte, 1,073,741,824 bytes, and labels it GB. That is a difference of about 7 percent, and it compounds: a terabyte drive loses about 69 GB to the conversion alone.

AdvertisedWhat Windows showsLost to the conversion
64 GB59.6 GB4.4 GB
256 GB238 GB18 GB
1 TB931 GB69 GB
2 TB1862 GB138 GB

Then formatting takes its share

The file system itself needs space for its tables. On NTFS that is the Master File Table and the journal, typically a small percentage. A 64 GB drive showing 57 GB after formatting is that plus the conversion, and it is normal.

When it is not normal

  • A drive showing far less than expected, such as 32 GB on a 64 GB stick, usually has a hidden or unallocated partition. Disk Management shows it.
  • A drive showing more than it can hold is the classic counterfeit: firmware reports a large size and writes wrap around, destroying earlier data silently.
  • A drive that shrank after use may have remapped failing sectors, which is a warning.
# Every partition, including hidden ones
Get-Disk | Get-Partition | Select-Object DiskNumber, PartitionNumber, DriveLetter, Type,
  @{n='SizeGB';e={[math]::Round($_.Size/1GB,1)}}

Testing a suspicious drive

If a drive was cheap and the capacity looks too good, write a known amount of data and read it back. Tools designed for this fill the drive with verifiable patterns and check them, which is the only reliable way to catch a counterfeit before it eats your files.

Reclaiming a hidden partition

Disk Management can delete an unallocated or leftover partition and extend the main one. On a drive that used to be bootable, or shipped with a manufacturer's software partition, that is where the missing space is.

Common questions

Why does my 64 GB drive show 57 GB?

Manufacturers count gigabytes as a billion bytes while Windows counts 1,073,741,824 and calls it GB, a difference of about 7 percent, plus the space the file system needs for its own tables.

Is a drive showing less capacity faulty?

Usually not. If it is showing far less than the conversion explains, check Disk Management for a hidden or unallocated partition, which is common on drives that were once bootable.

How do I spot a counterfeit USB drive?

Its firmware reports a capacity it does not have, and writes wrap around and destroy earlier data. Writing verifiable data across the whole drive and reading it back is the only reliable test.

Can I get the missing space back?

If it is a hidden or leftover partition, yes: Disk Management can delete it and extend the main partition. The conversion and formatting overhead cannot be reclaimed.

Read next