Win 11 Boot And Upgrade FiX KiT (v6.1f2 Released!!!)

Discussion in 'Windows 11' started by Enthousiast, Jun 28, 2021.

  1. andreasmith

    andreasmith MDL Novice

    Oct 7, 2025
    10
    4
    0
    well, maybe it was my wrong doing
    thank you anyway, great tool
     
  2. kerpert

    kerpert MDL Novice

    Sep 12, 2013
    10
    1
    0
    In my case the v6.1f2 doesn't accept the Win11_25H2_EnglishInternational_x64.iso (no matter in which folder it is), giving

    =========================================================
    No iso file detected ...
    =========================================================


    Press 9 or q to exit.
     
  3. patapout

    patapout MDL Member

    Jun 23, 2014
    232
    130
    10
    Mine don't create the iso after all the work is done...
    Went back to v6.
     
  4. kerpert

    kerpert MDL Novice

    Sep 12, 2013
    10
    1
    0
    Where I can download the old releases?
     
  5. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    54,966
    125,941
    450
    Why?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    54,966
    125,941
    450
    Show the progress and we know why or what.

    6.1 = 6.0
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. kerpert

    kerpert MDL Novice

    Sep 12, 2013
    10
    1
    0
    Because it doesn't work (see my post above of this morning).
    Anyway I have resolved by simply apply the update kb5054156 to my unsupported hardware with 24H2.
     
  8. migascalp

    migascalp MDL Addicted

    Sep 18, 2009
    557
    940
    30
    @rpo
    The file selection always points to the same folder.
    In one of my scripts, I use:
    Code:
    for /F "tokens=*" %%i in  ('powershell -NoP -C ^
        "Add-Type -AssemblyName System.Windows.Forms;" ^
        "function Get-FileName($InitialDirectory)" ^
        "{$OpenFileDialog = New-Object System.Windows.Forms.OpenFileDialog;" ^
        "$OpenFileDialog.InitialDirectory = $InitialDirectory;" ^
        "$OpenFileDialog.filter = 'ISO images (*.iso)|*.iso';" ^
        "$OpenFileDialog.ShowDialog() | Out-Null;" ^
        "$OpenFileDialog.FileName};" ^
        "Get-FileName($InitialDirectory) | Write-Host;" ^
        "$OpenFileDialog.FileName;" ^
        ') do set "ISO_Path=%%i"
    
    The advantage is that the system remembers the last folder used.
    This is just a suggestion.
     
  9. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    54,966
    125,941
    450
    It should open the Source_ISO folder first, and when you want you can browse to another folder.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  10. migascalp

    migascalp MDL Addicted

    Sep 18, 2009
    557
    940
    30
    Great, thanks!
    I didn't know how I missed that. ;)
     
  11. rpo

    rpo MDL Expert

    Jan 3, 2010
    1,549
    1,674
    60
    Just comment line 59 :
    Code:
    rem set "s=%s%$FB.InitialDirectory=\"%~dp0Source_ISO\";"
    or delete it : this way the system remembers the last folder used. instead of pointing to the Source_ISO folder.
     
  12. migascalp

    migascalp MDL Addicted

    Sep 18, 2009
    557
    940
    30
    I'll be able to improve my script.
    Thank you.
     
  13. rpo

    rpo MDL Expert

    Jan 3, 2010
    1,549
    1,674
    60
    6.0 and 6.1 create the same iso (the only difference is the location of the source iso which doesn't affect the content of the generated iso).
     
  14. rpo

    rpo MDL Expert

    Jan 3, 2010
    1,549
    1,674
    60
    This should work for you :
    Code:
    for /F "delims=" %%i in ('powershell -NoP -C ^
        "[void](Add-Type -AssemblyName System.Windows.Forms);" ^
        "$FileBrowser = New-Object System.Windows.Forms.OpenFileDialog;" ^
        "<#$FileBrowser.InitialDirectory=\"%~dp0Source_ISO\"#>;" ^
        "$FileBrowser.Title = 'Select the Windows iso image';" ^
        "$FileBrowser.Filter = 'ISO images (*.iso)|*.iso';" ^
        "$FileBrowser.Multiselect = $False;" ^
        "If($FileBrowser.ShowDialog() -ne 'Cancel'){$FileBrowser.filename}" ^
        ') do set "ISO_Path=%%i"
     
  15. migascalp

    migascalp MDL Addicted

    Sep 18, 2009
    557
    940
    30
    I tried to adapt my script into this format this weekend, but I failed.
    Your response is timely.
    Thank you.
     
  16. rpo

    rpo MDL Expert

    Jan 3, 2010
    1,549
    1,674
    60
    I just tried and the iso was created
     
  17. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    54,966
    125,941
    450
    #1778 Enthousiast, Oct 19, 2025
    Last edited: Oct 19, 2025
    (OP)
    That's because of the inserted generic ei.cfg file in the sources folder of the ISO.
    With option 2 that should not happen (checking now EDIT checked and option 2a and b don't show server in the title bar), option 1 uses UFWS and the server.cfg file, server doesn't enforce the windows 11 system requirements.

    For clean install and using option 2 only 2a is needed, for upgrades you need to run 2b on the system you want to upgrade to 24/25H2.

    Thanks:)
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  18. MIMMO61

    MIMMO61 MDL Senior Member

    Aug 19, 2009
    379
    108
    10
    The only thing I noticed is that I can't select the other options, only the (0) button.
    I don't know if that matters.
     
  19. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    54,966
    125,941
    450
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...