Windows 8.1 installation - partitions

5

I downloaded and burnt windows 8.1 from MSDN, but during installation I noticed that when I formatted and deleted particular partitions they won't merge into one as in windows 7 installation (as far as I remember). I had 4 partitions: 50GB 200GB 175GB and 30GB, when I deleted 50 and 30 parts they still stayed as partitions which didn't merge. I want to divide mentioned partitions into 40 GB parts. Extend option was disabled. What did I do wrong ?

Updated with Diskpart info

ashur

Posted 2013-12-20T17:17:16.227

Reputation: 151

@MDTGuy's comment is overly harsh... slightly. Having so many partitions is not very typical due to a lack of necessity in most scenarios. I won't blindly condemn so many partitions without asking why it was ever done. However, the question (of why it was ever done) is worth asking. Of course, this superuser.com question seems to be aiming to reduce the number of partitions (theoretically resolving the concern of an overly complicated layout). – TOOGAM – 2016-04-18T02:10:41.053

You have an extended partition between your logical partitions – Ramhound – 2016-05-18T22:26:58.983

Logical partitions live inside the extended partition. – wendy.krieger – 2017-04-27T09:21:45.847

3For various reasons, you'll likely need to erase all partitions on the drive to get the end result you're looking for. It's possible that the two partitions that were cleared are not suitably physically situated on the platters to merge, or there could be issues pertaining to the partition table. – dotVezz – 2013-12-20T18:05:38.513

1why do you have FIVE partitions??? this is nonsense! – MDT Guy – 2014-01-03T14:06:21.887

Answers

0

A hard disk drive is a sequential data access drive (its pseudo random). Let's say your hard drive space is divided into ABCDE. This division is sequential i.e. The B partition space comes after A and C after B and so on.

You can only merge two partitions if there are adjacent.

  • These partitions can be merged together: AB, BC, CD, DE, ABC, BCD, CDE,...

If you try to merge partitions which have another working partition between them, they can't be merged together. They will remain as seperate spaces.

If you really want to merge them (say A and C), you can backup your B data to some other disk and merge the whole ABC, and then create partition from that merged ABC. OR you can move your B data to C and merge AB instead.

There is a utility "EaseUS Partition Master", it is a shareware program. But it also does the same thing.

I suggest you leave those partitions as they are. OR if you want, you can backup your drive and make new partitions from scratch.

Shubham

Posted 2013-12-20T17:17:16.227

Reputation: 132

0

The GUI for Windows Setup is known to be a little goofy, it`s kinda designed to be "easy" to use, but if you know what you're doing its better to use the command prompt to manage the disks with diskpart commands.

Press Shift + F10 during the install to get a command prompt.

EXTEND THE PARTITION TO FREESPACE

See: http://technet.microsoft.com/en-us/library/cc770938.aspx

-or-

ONLY DO THIS IF YOU DONT WANT DATA ON THE DISK

If you don't want any of the data on the local system, just go nuclear, make it easy, clean and wipe the whole disk.

diskpart
list disk
select disk 0
clean
exit

For more info on using DiskPart from the commandline:

http://technet.microsoft.com/en-us/library/cc770877.aspx

MDT Guy

Posted 2013-12-20T17:17:16.227

Reputation: 3 683

Thanks, but my problem is that other partitions must stay as they were. I only want to delete 30 and 50 parts, merge them and divide into two parts 40 each. Is it possible somehow to do in command prompt ? – ashur – 2013-12-20T17:35:38.447

2Why are you making this more complicated than it needs to be? Messing with multiple partitions is like messing with multiple women, its all fun and games at first, but it all ends very horribly in the end. – MDT Guy – 2013-12-20T17:39:02.557

1I'm sorry, but I don't understand what do you mean by that comparison. I simply wanted to resize two partitions during installation, what is wrong with that ? – ashur – 2013-12-20T17:43:55.053

Regardless of what you're trying to do, the command line diskpart command is your best bet if you're having problems with the GUI in windows setup. – MDT Guy – 2013-12-20T17:47:14.357

Again, you're making this more complicated than it needs to be, clean the disk (effectively wiping it) and just let setup take it from there. You may be able to extend the partition from the commandline, but I'd just wipe it and start clean. – MDT Guy – 2013-12-20T17:50:21.227

@MDTGuy If the other partitions should stay, they should stay.. I honestly don't see the need to insist on going nuclear. Yes it's easier, but even otherwise it should be possible, given that they're adjacent – Milind R – 2013-12-22T20:31:21.773

@ashur Can you post a screenshot (or equivalent) from diskpart? Just select disk x, then list partition. – Milind R – 2013-12-22T20:33:12.200

@MilindR I made update of my post. – ashur – 2013-12-23T14:39:53.953

3As you can see, they're not adjacent. You can't do it, not without a lot of data moving, which is almost equivalent to a full delete and remaking of partitions. – Milind R – 2014-01-03T09:12:09.337