Windows 10: Windows installation wouldn't create GPT partition.

Discus and support Windows installation wouldn't create GPT partition. in Windows 10 Installation and Upgrade to solve the problem; Trying to install new hard drive on my laptop. I have a blank brand new 1 TB hard drive and partitioned as GPT Style partition. Downloaded the... Discussion in 'Windows 10 Installation and Upgrade' started by Babak Tohidi, Apr 29, 2023.

  1. Windows installation wouldn't create GPT partition.


    Trying to install new hard drive on my laptop. I have a blank brand new 1 TB hard drive and partitioned as GPT Style partition. Downloaded the mediacreation tool for windows 10 and 11 and installed the boot disk on the blank HDD. When I try to install windows on my laptop, I realized that the partition made as MBR! and I tried over and over but the mediacreation keeps making windows installation as MBR which my laptop wouldn't take MBR as it is set as UEFI mode. Please help!

    :)
     
    Babak Tohidi, Apr 29, 2023
    #1

  2. Installing Windows Vista/7 on a GUID Partition Table

    Background

    GUID Partition Table (GPT) is a boot sector technology poised to replace the venerable Master Boot Record (MBR) principally because MBR has a maximum capacity of 2 TB for a single partition (some single disks have reached 3 TB). Installing Windows on a GPT is a bit tricky because Windows wants to default back to MBR. In order to force Windows on to a GPT, we have to pre-format the drive prior to Windows installation. You can do that during Windows setup using the console.

    Requirements

    • Windows Vista or 7 (must be 64-bit no matter which OS is used)
    • A motherboard with EFI BIOS
    • A means to EFI boot the Windows setup (I had to use a USB DVD drive on MSI Z77A-G65, the internal SATA Bluray drives didn't have an EFI option)
    Instructions

    • Boot into Windows setup using EFI. On the MSI Z77A-G65, it showed up as UEFI:USB-ATAPI DVD ... This will change according to your motherboard and how you are attempting to enter setup. This step is critical. Without booting into setup via EFI, only MBR is available to the setup. There's no easy way to tell from within setup if it is running via EFI or not.
    • Once you have booted into setup, continue through the process as you would normally until you reach the dialog which shows you the available drives. Load a driver, if necessary, then press SHIFT+F10 to open the command prompt.
    • In the command prompt, enter the following lines, pressing enter after each one. Note that the <id> field below is the disk ID that you want to format as GPT from the "list disk" command. If there's only one drive, <id> will likely be 1. Note: All data on the drive will be lost during this process. Make sure to select the correct drive.
      • diskpart
      • list disk
      • select disk <id>
      • online disk
      • attributes disk clear readonly
      • clean
      • convert gpt
      • create partition efi size=102
      • create partition msr size=32
      • create partition primary
      • format fs=ntfs label="Operating System"
      • assign letter=C
      • exit
      "online disk" and "attributes disk clear readonly" are likely to fail. Don't worry, they are only precautionary. Change the drive letter and label to whatever you want. Also, the above command (specifically "create partition primary") will consume all remaining space on the drive. If you want multiple partitions with fixed sizes, substitute what you want in place of "create partition primary."
    • You may now close the command prompt and click on "Refresh" back in the dialog to choose where to install Windows. You should now see at least 2 partitions (I think Microsoft Reserved is hidden) and it will only let you install on a non EFI/MSR partition. Click on the primary partition and proceed with the installation as normal.
    • Note that in the EFI BIOS after installing Windows via EFI, you can no longer directly boot the volume Windows is installed on. Instead, you must boot via "Windows Boot Manager" (on MSI Z77A-G65, it was "UEFI: Windows Boot Manager"). Keep that in mind if you wish to tweak the boot order.
    Conclusion

    That should do it. You should be in Windows with >2 TB of hard drive capacity available if you had more than 2 TB on the Windows partition. Congratulations being on the bleeding edge of technology! *Rockout :rockout:
     
    FordGT90Concept, Apr 29, 2023
    #2
  3. W1zzard Win User
    W7 Hard drive partition issue

    to get rid of that 100 meg windows partition that setup creates for you on a new install on a blank hdd:

    - press shift+f10 when on the partition management screen in setup <-- this opens a command prompt
    - diskpart <-- start the windows command line partition management tool
    - list disk <--- list the installed hdds in this computer for the next step
    - select disk 0 <- might have to replace 0 with the number of the correct disk
    - clean <-- this will erase all data on the disk you selected one step up- dont use the wrong disk!
    - create partition primary <- creates a primary partition taking up all space on the drive, adjust the command if necessary
    - exit, exit to exit diskpart and the command prompt
    - click refresh in partition manager and select your newly created partition and install to that
     
    W1zzard, Apr 29, 2023
    #3
  4. Windows installation wouldn't create GPT partition.

    Installing Windows Vista/7 on a GUID Partition Table

    I've never tried multiple partitions so this is a shot in the dark...

    At step #10, I would try setting the size parameter (it is in mebibytes) to how large you want the partition windows is installed on to be, then go ahead and install windows. This will leave the rest of the drive raw instead of consuming it into the OS partition (C drive). Once you successfully boot into Windows, you should be able to use Computer Management -> Disk Management to create partitions in the raw space.


    If you really wanted to do it with diskpart before Windows is installed, you basically repeat the following lines making sure to specify a size if you don't want it to consume all remaining space:
    • create partition primary size=size in mebibytes here
    • format quick fs=ntfs label="appropriate name here"
    • assign letter=C thru Z here
    Obviously, you can use quick formatting or leave it out for full format. Leave off the size parameter when you reach the final partition that should consume all the remaining space. Also remember that the order you do this in goes from the outside of the disk (where it is fastest) to the inside of the disk (where it is slowest). Because of this, it is recommended to put EFI (e.g. size=300), then MSR (e.g. size=300), then Windows (e.g. size=30000), then Applications (e.g. size=70000), then Storage (e.g. no size parameter).

    If I'm right, the above example would look like this:
    • diskpart
    • list disk
    • select disk <id>
    • online disk
    • attributes disk clear readonly
    • clean
    • convert gpt
    • create partition efi size=300
    • create partition msr size=300
    • create partition primary size=30000
    • format fs=ntfs label="Windows"
    • assign letter=C
    • create partition primary size=70000
    • format fs=ntfs label="Applications"
    • assign letter=D
    • create partition primary
    • format fs=ntfs label="Storage"
    • assign letter=E
    • exit
     
    FordGT90Concept, Apr 29, 2023
    #4
Thema:

Windows installation wouldn't create GPT partition.

Loading...
  1. Windows installation wouldn't create GPT partition. - Similar Threads - installation wouldn't create

  2. Windows installation wouldn't create GPT partition.

    in Windows 10 Gaming
    Windows installation wouldn't create GPT partition.: Trying to install new hard drive on my laptop. I have a blank brand new 1 TB hard drive and partitioned as GPT Style partition. Downloaded the mediacreation tool for windows 10 and 11 and installed the boot disk on the blank HDD. When I try to install windows on my laptop, I...
  3. Windows installation wouldn't create GPT partition.

    in Windows 10 Software and Apps
    Windows installation wouldn't create GPT partition.: Trying to install new hard drive on my laptop. I have a blank brand new 1 TB hard drive and partitioned as GPT Style partition. Downloaded the mediacreation tool for windows 10 and 11 and installed the boot disk on the blank HDD. When I try to install windows on my laptop, I...
  4. need help with GPT partitions order and Windows install

    in Windows 10 Software and Apps
    need help with GPT partitions order and Windows install: Hello to everyone: I have a question dealing with gpt / uefi and windows install, So I have a new ssd drive, and I am trying to do a fresh install of Windows 10 using UEFI, so I can install windows 11, which at this point seems to be more trouble than it is worth, I am using...
  5. Created a GPT Partition disk while plugged into usb

    in Windows 10 Drivers and Hardware
    Created a GPT Partition disk while plugged into usb: I had gotten a new hard drive in preparation to replace an old one that had been slowing down, and getting closer to the end of it's life. When i made the original partition table, i had selected GPT, not knowing what would happen afterwards. I transferred everything from the...
  6. Installing Windows 10 on GPT partition

    in Windows 10 Installation and Upgrade
    Installing Windows 10 on GPT partition: I've a Lenovo IdeaPad 110 Laptop which is currently running windows 10 on MBR partition. I want to do a clean install to change the partition type to GPT (My lap supports UEFI). How do i do that ?...
  7. Partition oddity with GPT

    in Windows 10 Drivers and Hardware
    Partition oddity with GPT: I was going to do a Linux Mint upgrade and ran into a partition problem. I had an overlapping partition. I got that straightened out, but when I run Gparted I get the following message and would like to repair the partition table accordingly. While it is a Linux message; the...
  8. Can't Install Windows 10 to a GPT Partition

    in Windows 10 Installation and Upgrade
    Can't Install Windows 10 to a GPT Partition: I'm pulling my hair out here. PROBLEM: Can't install Windows 10 x64 from an OEM disk ... to a Samsung 850 EVO 500Gb SSD ... on a GPT partition. It installs instead on a MBR partition. SPECS: Motherboard: Gigabyte GA-Z170X-Gaming 7 Bios version: F4 SSD: Samsung...
  9. Cannot install Windows to GPT partition

    in Windows 10 Installation and Upgrade
    Cannot install Windows to GPT partition: I have Windows 10 Pro installed on a partition of an SSD (one of four partitions; the other three being rather small and, I suppose, created by Windows 10 itself during the previous installation procedure. I attempted to reinstall Windows 10 to this partition but Windows...
  10. GPT Partition Style preventing Windows 10 Installation

    in Windows 10 Installation and Upgrade
    GPT Partition Style preventing Windows 10 Installation: I just built a custom pc with a new mobo. The hdd is used and has 8.1 on it which is not legal on this mobo. I can't really afford to buy 8.1 again. Especially since 10 is free. I burnt 10 to a disk and when I try doing a clean install I get a problem with GPT message...