Windows 10: How to make active@boot disk bootable on uefi/gpt?

Discus and support How to make active@boot disk bootable on uefi/gpt? in Windows 10 Installation and Upgrade to solve the problem; Hey Guys Thank you for the replies. @Hydranix you were correct in stating it was not an Os I was trying to install; their web site does state uefi... Discussion in 'Windows 10 Installation and Upgrade' started by ancient, Aug 18, 2015.

  1. ancient Win User

    How to make active@boot disk bootable on uefi/gpt?


    Hey Guys

    Thank you for the replies. @Hydranix you were correct in stating it was not an Os I was trying to install; their web site does state uefi supported. @genet thank you also for the detailed guide, which I was following anyway.

    It seems their support dept gave me incorrect info, v9 was the problem ( no uefi support), v 10.03 works flawlessly.

    I appreciate your assistance *Wink
     
    ancient, Aug 18, 2015
    #16

  2. Will the USB drive be bootable if all the contents are copied to a folder on the USB drive?
     
    Matthew Wai, Mar 2, 2017
    #17
  3. Hydranix Win User
    Not without configuring the firmware. The standard requires certain files with exact names be in particular places on the partition to be chosen automatically as the default efi application to execute.

    Most implementations of UEFI also will not detect external drives as bootable unless a file is in the standard location.

    You can configure the firmware manually to know where to find the bootloader. You can even install filesystem drivers and execute bootloaders of non-FAT filesystems if you desire.

    In the UEFI shell, the bcfg command can write boot entries to the firmware's NVRAM.
    Example:
    Code: bcfg boot add 0 "fs1:\directory\application.efi" "Application Description"[/quote]

    If you're making a flash drive that will have several different options to boot to, you'll need to use a boot manager in the default location, and preconfigure it to know where to look for the bootloaders.

    Some default locations
    Code: \bootx64.efi \EFI\bootx64.efi \EFI\boot\bootx64.efi[/quote] And for the shell, if you desire to have one. (always a good idea)
    Download for shell:
    shellx64.efi v1
    Shellx64.efi v2

    Clover boot manager modified shellx64.efi for pre-2.3 firmware
    link

    Default shell location for some firmware's built in "boot shell from filesystem device" menu option:
    Code: \shellx64.efi[/quote]
     
    Hydranix, Mar 3, 2017
    #18
  4. How to make active@boot disk bootable on uefi/gpt?

    I cannot select partition 1, beside which there is an asterisk, so I cannot mark it as active.
    See the screenshot below. I don't want to clean it because it already contains files.
    Can anyone help?

    How to make active@boot disk bootable on uefi/gpt? [​IMG]
     
    Matthew Wai, Mar 9, 2017
    #19
  5. Hydranix Win User
    The asterisk to the left of the partition indicates that it is the currently selected partition.

    When selecting a volume that is synonymous for a partition, diskpart will also select the partition.

    In the context of the image you posted, It appears to me that volume 5, the NTFS formatted volume labeled "USB drive" has a single partition. So selecting volume 5 is the same as selecting partition 1 of the USB drive.

    But diskpart is having a problem with the disk it appears, so you should backup any important data on the drive, select the disk, and issue the clean command. This will wipe out the partition information, data will be intact if you accidentally clean the wrong disk, but assume that clean will destroy all data on the disk.

    After you use the command clean on the flash drive, you will be able to create a new partition on the drive and access it from diskpart like you are attempting.

    Also, if you are attempting to boot this flash drive in UEFI mode, you'll want to use FAT32 as the filesystem, instead of NTFS. NTFS can only work if your BIOS includes an EFI NTFS filesystem driver (I know ASUS and some MSI UEFI implementations include one), or if you manually install an EFI NTFS filesystem driver and configure your firmware to load this driver prior to boot.

    The following are some details about windows' treatment of partitions on usb flash drives that aren't relevant to your current post, but most likely will arise in the future for you.

    Windows is limited on the way it treats usb flash drives, it only allows a single partition (the first) to be accessible at a time. Other operating systems treat flash drives exactly like any other disk and allows partition-tables, multiple partitions, or partition less full disk filesystems. There are workarounds for this, but shortof a microcontroller firmware reconfiguration of the flash drive, window's will only allow one partition be mounted (assigned a drive letter) on flash drives.
     
    Hydranix, Mar 9, 2017
    #20
  6. On Disk Management, the USB drive partition is not active.
    On MiniTool Partition Wizard, it is shown as active.
    Actually, is it bootable or not? See the screenshots below.


    How to make active@boot disk bootable on uefi/gpt? [​IMG]


    The following is MiniTool Partition Wizard.

    How to make active@boot disk bootable on uefi/gpt? [​IMG]
     
    Matthew Wai, Mar 10, 2017
    #21
  7. Hydranix Win User
    If the Bootable flag is set for that partition in the mbr partition table entry for the partition, a proper bios will look for and attempt to execute the boot code at the beginning of that partition, So yes it should be bootable if the above is true.

    However, since Windows Disk Manager and Diskpart.exe are not detecting the partition as active, I would have to assume there is something wrong with the partition table of the flash drive (ie it is ill-formed)

    Have you tried actually booting the flash drive? If it fails to boot I suggest wiping the flash drive, and writing a new partition table and partition entry, and then formatting a fresh filesystem to it.

    Partition Wizard has an option to repair the MBR. You can also try that.
     
    Hydranix, Mar 10, 2017
    #22
  8. How to make active@boot disk bootable on uefi/gpt?

    FAT32 applies to both UEFI BIOS and Legacy BIOS, right?

    No. I want to use it to clean install Redstone 2 later.
     
    Matthew Wai, Mar 10, 2017
    #23
  9. Hydranix Win User
    Yes, that is correct. By using FAT32, you can boot in either Legacy mode, or UEFI mode if supported, and the flash drive contains both UEFI and Legacy boot files.

    Then I would suggest backing up the data on the drive and doing a full wipe to avoid any problems.

    After the data has been backed up
    Code: diskpart sel dis # cle all cre par pri format fs=fat32 quick act ass letter=s exit bootsect /nt60 S: /force bootsect /nt60 S: /force /mbr[/quote] copy over data and everything should work as expected
     
    Hydranix, Mar 10, 2017
    #24
  10. The above does not exist in post #7, so I did not run them. Why are they needed?
    Before you wrote post #22, I had already done the following.
    Is the USB drive bootable now?


    How to make active@boot disk bootable on uefi/gpt? [​IMG]



    How to make active@boot disk bootable on uefi/gpt? [​IMG]
     
    Matthew Wai, Mar 11, 2017
    #25
  11. AddRAM Win User
    But there`s no iso file on it, is there ?

    I still don`t understand what people are trying to do here, are you trying to make a bootable usb to run windows 10 off of ?

    Or are you trying to make a bootable usb to install windows 10 off of ?
     
    AddRAM, Mar 11, 2017
    #26
  12. I want to make a bootable USB drive to clean install the upcoming version of Windows 10.
     
    Matthew Wai, Mar 11, 2017
    #27
  13. Hydranix Win User

    How to make active@boot disk bootable on uefi/gpt?

    This threads was originally concerning a UEFI-mode bootable flash drive. So I answered you under the assumption that you wanted to make a flash drive UEFI bootable.

    Then you said:

    So I added the extra bootsect commands which make the drive Legacy-mode bootable. So that you would have a flash drive which can do both.

    I originally omitted the Legacy-mode steps because I've had many experiences of people mistakenly installing Windows on modern hardware in Legacy mode, and using the CSM (which slows down the boot process and places limitations on the OS to some degree) rather than in UEFI-mode, and since the IBM PC BIOS (aka Legacy BIOS) is entirely deprecated, I assume UEFI is what people want by default.


    In UEFI-mode it will boot if the contents of the Windows 10 ISO, not the ISO file itself, but what it contains, are copied to the flash drive.

    If you want to also have the option to Legacy boot the flash (not recommended unless you know you need it to be) you will have to run the bootsect command to write the Legacy boot code to the flash drive. Of course the ISO contents will need to be copied to the flash drive as well, like I said above.


    I hope I wasn't unclear, sorry if I over explain things a bit.
     
    Hydranix, Mar 11, 2017
    #28
  14. No bootsect commands are needed in the method described in post #7, which applies to both UEFI and Legacy mode. Why are bootsect commands needed in my case?

    I use an MBR disk, so I have to use the Legacy mode, but I might go over to GPT in the future.
     
    Matthew Wai, Mar 11, 2017
    #29
  15. Hydranix Win User
    the bootsect commands are unnecessary if not using Legacy mode. However, in your case, since you're using MBR partition table, and do not at this time want to move to a GPT, you'll need to use the bootsect commands on the flash drive.

    I'd strongly advise, if your motherboard firmware is UEFI capable, to use a GPT formatted hard drive, and installing windows in UEFI mode, and disabling Legacy Emulation in your firmware (aka the Compatibility Support Module).
     
    Hydranix, Mar 11, 2017
    #30
Thema:

How to make active@boot disk bootable on uefi/gpt?

Loading...
  1. How to make active@boot disk bootable on uefi/gpt? - Similar Threads - active@boot disk bootable

  2. Make Win10 disk bootable.

    in Windows 10 Gaming
    Make Win10 disk bootable.: Hello,I have a dual-boot desktop with a Win-7 disk bootable, and a Win-10 disk non-bootable. The Win-7 disk has the boot option code installed, to pick either win10 or win7 on power-up. The Win-10 disk has no boot record/code, and cannot boot by itself. Is there a way to add...
  3. Make Win10 disk bootable.

    in Windows 10 Software and Apps
    Make Win10 disk bootable.: Hello,I have a dual-boot desktop with a Win-7 disk bootable, and a Win-10 disk non-bootable. The Win-7 disk has the boot option code installed, to pick either win10 or win7 on power-up. The Win-10 disk has no boot record/code, and cannot boot by itself. Is there a way to add...
  4. Make Win10 disk bootable.

    in Windows 10 Customization
    Make Win10 disk bootable.: Hello,I have a dual-boot desktop with a Win-7 disk bootable, and a Win-10 disk non-bootable. The Win-7 disk has the boot option code installed, to pick either win10 or win7 on power-up. The Win-10 disk has no boot record/code, and cannot boot by itself. Is there a way to add...
  5. Secure Boot State Unsupported with UEFI Bios and GPT Disk Formation.

    in AntiVirus, Firewalls and System Security
    Secure Boot State Unsupported with UEFI Bios and GPT Disk Formation.: Hello everyone. I am currently running Windows 10 Insider Build and have gotten the option to update to Windows 11 Insider Build but my PC is coming up with the error "This PC Can't Run Windows 11. This PC Must support Secure Boot.". This is very confusing because my PC is...
  6. How to make a clone disk bootable?

    in Windows 10 Installation and Upgrade
    How to make a clone disk bootable?: My hard drive didn’t want to boot so I used Macrium Reflect 7 Free and made a clone of the hard drive to a USB external drive. Unfortunately I didn’t manage to boot my device from this cloned, external drive. I decided to install Macrium Reflect 7 Free on the SSD to use it as...
  7. Make clone disk bootable?

    in Windows 10 Installation and Upgrade
    Make clone disk bootable?: My Dell laptop running Windows 10 on 1 TB hard drive wouldn't boot. Fortunately I was using Macrium Reflect 7 Free to make a clone of that hard drive to a USB external 1 TB drive. I wasn't able to get the laptop to boot from the cloned, external drive, so I installed a 500...
  8. How to make GPT volume bootable

    in Windows 10 Installation and Upgrade
    How to make GPT volume bootable: I'm not sure the history is too helpful as the question says it all, but here it is. On an Acer predator G3-605 I had a mSATA 60GB SSD as system disk that was too small. I bought a larger replacement and used Acronis True Image 2019 to clone it. The clone was successful in...
  9. Convert MBR disk to GPT via uefi shell?

    in Windows 10 Drivers and Hardware
    Convert MBR disk to GPT via uefi shell?: Hello! I did something terrible to my tablet, I converted the partition from GPT to MBR in a desperate try to install windows 7. Now tablet is not reading any usb I plug in, and of course I cannot format disk again because it doesn't recognize anything, always booting...
  10. Dual BOOT with Linux on ext3 and GPT + UEFI

    in Windows 10 Installation and Upgrade
    Dual BOOT with Linux on ext3 and GPT + UEFI: Have two SSDs, one for W10 Insider and on other one I just reinstalled Linux Mint with UEFI and GPT partition(s). [img] [img] While both were in "normal legacy BIOS" way, non-UEFI I was able to make it dual BOOT but now my favorite, EasyBCD can't make working BOOT...

Users found this page by searching for:

  1. nt60 /mbr /force fs=fat32 usb bootable