Skip to content

Instantly share code, notes, and snippets.

@nanusdad
Last active May 20, 2023 05:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nanusdad/29f69321f20700f4872f8e753c734e89 to your computer and use it in GitHub Desktop.
Save nanusdad/29f69321f20700f4872f8e753c734e89 to your computer and use it in GitHub Desktop.
Adding more than 2TB disk to Windows

Adding more than 2TB disk to Windows

Maximum capacity of MBR partition tables is only about 2 terabytes. One can use a drive that's larger than 2 terabytes with MBR, but only the first 2 terabytes of the drive will be used. The rest of the storage on the drive will be wasted.

GPT partition tables offer a maximum capacity of 9.7 zetabytes.

If a new large disk has been added - Use Disk Management or diskpart to initialize disk with GPT and then create a volume.

If disk already has MBR partition tables then follow tests below -

Using diskpart to convert MBR to GPT

list disk
select disk 4       #use the number of the disk from list
clean               #this is will wipe out any data !!
convert gpt

More ...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment