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

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

  1. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    52,562
    116,334
    450
    Count on 10GB for extracting the ISO and 10 for creating the fixed ISO.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. ibeqa

    ibeqa MDL Member

    Sep 14, 2009
    161
    12
    10
    Thank you all. It works now...
     
  3. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    52,562
    116,334
    450
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. rpo

    rpo MDL Expert

    Jan 3, 2010
    1,533
    1,639
    60
    #1764 rpo, Oct 7, 2025
    Last edited: Oct 7, 2025
    Line 59 :
    Code:
    set "s=%s%$FB.InitialDirectory=\"C:\My Folder\";"
    Double quotes (") must be escaped by \ : \"

    Script location :
    Code:
    "C:\CD-ROM\Windows 11\Win_11_Boot_And_Upgrade_FiX_KiT_v6.0\Win_11_Boot_And_Upgrade_FiX_KiT_v6.1.cmd"
     
  5. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    52,562
    116,334
    450
    He is posting allover the board, i ran the test and it worked fine with a spacing in the folder name.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. andreasmith

    andreasmith MDL Novice

    Oct 7, 2025
    8
    4
    0
    I got problem with the latest version, I switched back to previous one
     
  7. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    52,562
    116,334
    450
    There is zero difference between 6.0 and 6.1 other then ISO selection, what exact problems did you have?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  8. andreasmith

    andreasmith MDL Novice

    Oct 7, 2025
    8
    4
    0
    ISO selection, fail to me, than i tried with other directory, work fine
     
  9. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    52,562
    116,334
    450
    It opens the default folder, you can select that ISO or browse to another folder and select an ISO there, working fine here.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  10. andreasmith

    andreasmith MDL Novice

    Oct 7, 2025
    8
    4
    0
    well, maybe it was my wrong doing
    thank you anyway, great tool
     
  11. 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.
     
  12. patapout

    patapout MDL Member

    Jun 23, 2014
    226
    123
    10
    Mine don't create the iso after all the work is done...
    Went back to v6.
     
  13. kerpert

    kerpert MDL Novice

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

    Enthousiast MDL Tester

    Oct 30, 2009
    52,562
    116,334
    450
    Why?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  15. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    52,562
    116,334
    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...
  16. 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.
     
  17. migascalp

    migascalp MDL Addicted

    Sep 18, 2009
    534
    908
    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.
     
  18. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    52,562
    116,334
    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...
  19. migascalp

    migascalp MDL Addicted

    Sep 18, 2009
    534
    908
    30
    Great, thanks!
    I didn't know how I missed that. ;)
     
  20. rpo

    rpo MDL Expert

    Jan 3, 2010
    1,533
    1,639
    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.