UUP to ISO - Create Bootable ISO from Windows 10 Build Upgrade Files  


  1. Posts : 18
    Windows 10 Insider preview
       #830

    Hi Kari
    Please do not take this the wrong way.

    I used a DVD-R burnt from an ISO of Build 16281, to install a clean windows 10 Pro on a raw SSD drive.
    later when I tried to do a system image of completely set up PC, I received an error message telling me that one of the partitions on the new drive was a fat32 partition, so system image could not continue.

    UUP to ISO - Create Bootable ISO from Windows 10 Build Upgrade Files-capture.jpg

    I am trying to find out if this creation of a fat 32 partition is a weakness in the original build 16281.
    or is it something caused by the way UUP to ISO creates the ISO from the ESD files ?

    I have sent feedback to Microsoft insider program, hoping for some reply there.
    but can we check this EFI partition created on my drive is not a flaw in UUP to ISO ?

    Regards
    Bernie Vink
      My Computer


  2. Posts : 15,485
    Windows10
       #831

    Bernievink said:
    Hi Kari
    Please do not take this the wrong way.

    I used a DVD-R burnt from an ISO of Build 16281, to install a clean windows 10 Pro on a raw SSD drive.
    later when I tried to do a system image of completely set up PC, I received an error message telling me that one of the partitions on the new drive was a fat32 partition, so system image could not continue.

    UUP to ISO - Create Bootable ISO from Windows 10 Build Upgrade Files-capture.jpg

    I am trying to find out if this creation of a fat 32 partition is a weakness in the original build 16281.
    or is it something caused by the way UUP to ISO creates the ISO from the ESD files ?

    I have sent feedback to Microsoft insider program, hoping for some reply there.
    but can we check this EFI partition created on my drive is not a flaw in UUP to ISO ?

    Regards
    Bernie Vink

    We recommend using Macrium Reflect Free to do image backups as MS have stated they are deprecating system image backups now, and advise using 3rd party tools.

    I doubt MRF will fail.
      My Computer


  3. Posts : 4,666
    Windows 10 Pro x64 21H1 Build 19043.1151 (Branch: Release Preview)
       #832

    Bernievink said:
    I am trying to find out if this creation of a fat 32 partition is a weakness in the original build 16281.
    or is it something caused by the way UUP to ISO creates the ISO from the ESD files ?
    There's nothing wrong with the tool.

    In your case ALL partitions looks exactly as they should, since you are using GPT partition scheme. The FAT32 partition must exist, or your system won't boot at all.

    Update: only thing not quite right is the location of the recovery partition, which should be in the end of your HDD.

    Read this MS article/Blog: Desktop Manufacturing - UEFI/GPT-based hard drive partitions
      My Computers


  4. Posts : 18
    Windows 10 Insider preview
       #833

    slicendice said:
    the only thing not quite right is the location of the recovery partition, which should be in the end of your HDD.Read this MS article/Blog: Desktop Manufacturing - UEFI/GPT-based hard drive partitions
    I know but I did not create these partitions Build 16281 did.
    as the Fat32 partition is a must or no boot, I guess a new imaging program will have to do.
    I have been relying on MS system image for approx 10 years and so far (touch wood) it has never failed me.
      My Computer


  5. Posts : 4,666
    Windows 10 Pro x64 21H1 Build 19043.1151 (Branch: Release Preview)
       #834

    Bernievink said:
    ...I guess a new imaging program will have to do...
    Yes, exactly as MS is recommending!

    Download Macrium Reflect Free. It's very powerful.
    Last edited by slicendice; 07 Sep 2017 at 01:11. Reason: Added link to Macrium
      My Computers


  6. Posts : 17,661
    Windows 10 Pro
    Thread Starter
       #835

    Bernievink said:
    Please do not take this the wrong way.
    No problems, you have an issue and post about it, how could I take it wrong?

    Anyway, I have not used Windows own backup in about 10 years. As so many other geeks here at TF, I rely on Macrium Reflect.

    Having said that, your issue has nothing to do with UUPtoISO tool or your install media made using it. Your screenshot shows you have a default partitioning scheme, system disk partitioned by Windows setup exactly as it should be. A 499 MB WinRE partition (must be NTFS), followed by 100 MB EFI system partition (must be FAT32), and a 16 MB MSR partition (Microsoft Reserved, not formatted), and finally Windows partition.

    That is how it should be, how Windows setup partitions system disk on UEFI / GPT machines. Windows native imaging cannot create an image from a GPT formatted disk, exactly because of the error you got: the EFI partition is FAT32, and you cannot even exclude it from backup. As screenshot shows, the selection box is greyed out, it really can't be excluded:
    UUP to ISO - Create Bootable ISO from Windows 10 Build Upgrade Files-image.png

    Windows Backup and Imaging can only be used to backup BIOS / MBR machines. In your case you need to use a third party backup tool.


    slicendice said:
    Update: only thing not quite right is the location of the recovery partition, which should be in the end of your HDD.
    That is something that has always puzzled me: Microsoft recommends placing the WinRE partition after C: drive (EFI, MSR, Windows, WinRE), but if you install Windows 10 on a UEFI machine letting Windows setup do the partitioning, the WinRE will be placed as volume 1, first partition (WinRE, EFI, MSR, Windows).

    That's why I use a DISKPART script to partition system disk whenever clean installing Windows on a UEFI / GPT system. Here's a sample DISKPART script:

    Code:
    rem DISKPART script, all available space to C:partition
    rem ---------------------------------------------------
    rem Select Disk 0, wipe it empty, convert to GPT
    rem ---------------------------------------------------
    select disk 0
    clean
    convert gpt
    rem ---------------------------------------------------
    rem Create & format 100 MB EFI System partition 
    rem ---------------------------------------------------
    create partition efi size=100
    format quick fs=fat32 label="System"
    rem ---------------------------------------------------
    rem Create 16 MB MSR partition (will not be formatted)
    rem ---------------------------------------------------
    create partition msr size=16
    rem ---------------------------------------------------
    rem Create Windows partition using all available space
    rem ---------------------------------------------------
    create partition primary
    rem ---------------------------------------------------
    rem Shrink Windows partition to make space for WinRE 
    rem ---------------------------------------------------
    shrink minimum=450
    rem ---------------------------------------------------
    rem Format Windows partition, label it, no drive letter
    rem ---------------------------------------------------
    format quick fs=ntfs label="Windows"
    rem ---------------------------------------------------
    rem Create & format 450 MB recovery partition 
    rem ---------------------------------------------------
    create partition primary
    format quick fs=ntfs label="WinRE"
    set id="de94bba4-06d1-4d40-a16a-bfd50179d6ac"
    rem ---------------------------------------------------
    rem Exit Diskpart 
    rem ---------------------------------------------------
    exit

    To run above script, boot from Windows 10 install media, press SHIFT + F10 to open Command Prompt, run following command replacing Z:\DiskConfig.txt with actual path to your script:

    DISKPART /s Z:\DiskConfig.txt

    Close Command Prompt and proceed with Windows Setup.

    Kari
      My Computer


  7. Posts : 18
    Windows 10 Insider preview
       #836

    Kari said:
    No problems, you have an issue and post about it, how could I take it wrong?
    Windows Backup and Imaging can only be used to backup BIOS / MBR machines. In your case you need to use a third party backup tool.
    Kari
    Thank you Kari and all the other helpful people.
    I guess all the machines I have set up over the years have been MBR as this was my first failure (GPT system)
    I will try both Acronis and Macrium and see which I like best.

    Bernie
      My Computer


  8. Posts : 15,485
    Windows10
       #837

    Bernievink said:
    Thank you Kari and all the other helpful people.
    I guess all the machines I have set up over the years have been MBR as this was my first failure (GPT system)
    I will try both Acronis and Macrium and see which I like best.

    Bernie
    Macrium Reflect Free is free, and is fine for most users requirements.

    Acronis is not.

    Forum members here overwhelmingly prefer Macrium and many great tutorials on it by @Kari in tutorial section.

    I actually paid for Macrium Reflect Home as it has Rapid Delta Restore.
      My Computer


  9. Posts : 4,666
    Windows 10 Pro x64 21H1 Build 19043.1151 (Branch: Release Preview)
       #838

    Bernievink said:
    I will try both Acronis and Macrium and see which I like best.
    In the OLD days, I used to use Acronis and similar, but now I prefer Macrium, because it's FREE and much better in every way, in my opinion. If you need more features than the free edition can offer then do as @cereberus did and purchase a HOME license. Then you have a really powerful backup tool. :)
      My Computers


  10. Posts : 19,518
    W11+W11 Developer Insider + Linux
       #839

    I don't know if they fixed it but Acronis had problems with UEFI.
      My Computers


 

Tutorial Categories

UUP to ISO - Create Bootable ISO from Windows 10 Build Upgrade Files Tutorial Index Network & Sharing Instalation and Upgrade Browsers and Email General Tips Gaming Customization Apps and Features Virtualization BSOD System Security User Accounts Hardware and Drivers Updates and Activation Backup and Restore Performance and Maintenance Mixed Reality Phone


  Related Discussions
Our Sites
Site Links
About Us
Windows 10 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 10" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 15:15.
Find Us




Windows 10 Forums