1

After resizing a C: partition I'm left with two blocks of "unallocated space". However despite the fact that neither of these blocks is a partition (they're just blank space) Windows sees them as separate blocks. I cannot see any way to combine them or to create a new partition which spans both blocks of free space. See screenshot:

screenshot of partition manager

NickG
  • 654
  • 6
  • 12
  • 28

1 Answers1

3

The reason for this is because you are using an MBR disk rather than GPT, the maximum size of an MBR disk being 2TB. This is a bug in the disk management UI as in how it displays it, but functionally you'll only ever be able to use that first segment because of MBR constraints.

The only officially supported way to change this is to either re-install or use windows backup and restore, however there are a few programs available that purport to be able to do it but I don't know what it would do to the bootloader. Take a look at minitool partition wizard and, as mentioned above, GParted.

Alex Berry
  • 2,307
  • 13
  • 23
  • 1
    +1 for being [the right answer](http://homepage.ntlworld.com./jonathan.deboynepollard/FGA/2tib-disc-limit.html#MBRPartitionTableLimit). Well spotted! – JdeBP Sep 15 '11 at 14:39
  • This is brand newly formatted disk, so why has Windows defaulted to using this MBR format on a volume clearly larger than the maximum MBR supports? Does it ask you what format you want when you format a disk? I don't recall being asked. – NickG May 16 '12 at 10:24
  • It doesn't ask if you just click next but you can use the set up wizard to format the disk as GPT, then click next and let it populate the disk with the auto-sized partitions. – Alex Berry Jul 02 '12 at 09:03