Windows 11 SVF Repository

Discussion in 'Windows 11' started by Enthousiast, Jul 1, 2021.

  1. ciscokid

    ciscokid MDL Senior Member

    Jun 3, 2007
    319
    74
    10
    Trying to save some space on my NAS. I'd like to make some SVF's of my Windows ISO's with the en-US being the reference image but I just can't figure this out. Maybe I'm getting old, been in this game since the early 80's with the C64 LOL.

    Can someone please let me know the best way to do this? If there is a batch way so I don't have to do them one by one, that would be preferable. I basically need step by step and what tools to use. TIA
     
  2. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,274
    94,761
    450
    I always use this script provided by @GezoeSloog
    Code:
    :: drag and drop a Source file onto this batch
    
    @echo off
    
    set SmvExec=e:\Win_10_AiO\Releases\smv.exe
    
    set OutDir=.\EN2XX-SVF
    
    :: max number of SMVs to run simultaneously
    set RunInst=1
    
    
    
    
    cd /d "%~dp0"
    if not exist "%OutDir%" md "%OutDir%"
    
    if %RunInst% gtr 1 set _nowait=start "" /b
    
    call :_StrFind "%~n1" ISO
    
    for /f "usebackq delims=" %%i in (`dir "%~dp1*%_filter%*%~x1" /b /a:-d`) do (
      if "%%~i" neq "%~nx1" if not exist "%OutDir%\%%~ni.svf" (
        if %RunInst% gtr 1 call :_ProcWait smv.exe %RunInst%
        %_nowait% "%SmvExec%" BuildPatch "%OutDir%\%%~ni.svf" "%~1" "%~dp1%%~i" -nbhashbits 24 -compressratio 192 -sha1 -nomd5
        echo.
      )
    )
    
    exit
    
    :_StrFind
    echo %~1 | find /i "%~2" >nul
    if %ErrorLevel% neq 0 (
      shift /2
      if "%~2" neq "" goto _StrFind
    )
    set _filter=%~2
    exit /b
    
    :_ProcWait
    for /f %%i in ('tasklist /fi "ImageName eq %~1" ^| find /i /c "%~1"') do (
      if %%i geq %2 (
        timeout /t 1 /nobreak >nul
        goto _ProcWait
      )
    )
    exit /b
    
    Just modify the path to your smv.exe and drag and drop de source ISO on it with the desired target ISOs next to it.

    Most SVF patches won't be very small, because when the ISOs are very different, the patches will increase in size.
     
  3. ciscokid

    ciscokid MDL Senior Member

    Jun 3, 2007
    319
    74
    10
    Thank you @Enthousiast, you are very helpful as always. I will try the script after work tomorrow. I will match build numbers and architecture to make the smallest files possible. Thanks again!

     
  4. ciscokid

    ciscokid MDL Senior Member

    Jun 3, 2007
    319
    74
    10
    @Enthousiast trying the script now, works like a charm, reducing my ISO's by 90%. Thanks again!


     
  5. LostED

    LostED SVF Patch Lover

    Jul 30, 2009
    7,155
    21,099
    240
    #45 LostED, Nov 16, 2021
    Last edited: Nov 17, 2021
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. ermota3000

    ermota3000 MDL Novice

    Aug 12, 2012
    15
    5
    0
    Where to download pt-br_windows_11_business_editions_updated_nov_2021_x64_dvd_3bbad464.svf
     
  7. Sajjo

    Sajjo MDL Member

    Feb 6, 2018
    2,251
    3,259
    90
  8. ermota3000

    ermota3000 MDL Novice

    Aug 12, 2012
    15
    5
    0
  9. Sajjo

    Sajjo MDL Member

    Feb 6, 2018
    2,251
    3,259
    90
    YW.
    It's @GezoeSloog to thank you to ;)
     
  10. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,274
    94,761
    450
  11. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,274
    94,761
    450
    reserved...
     
  12. housex

    housex MDL Member

    Oct 30, 2010
    146
    97
    10
    zh-tw_windows_11_business_editions_updated_nov_2021_x64_dvd_4dc072f7.exe
    Not Working
     
  13. LostED

    LostED SVF Patch Lover

    Jul 30, 2009
    7,155
    21,099
    240
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. wvv000

    wvv000 MDL Senior Member

    Feb 21, 2019
    288
    401
    10
    ARM64 no Update?
     
  15. Yong Siang

    Yong Siang MDL Novice

    Oct 3, 2017
    22
    1
    0
    may i know what is the difference for
    windows11
    consumer editions and business editions
    home vs pro?
     
  16. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,274
    94,761
    450
    #56 Enthousiast, Nov 23, 2021
    Last edited: Nov 23, 2021
    (OP)
     
  17. Wazoo

    Wazoo MDL Addicted

    Nov 5, 2013
    513
    273
    30
    @Enthousiast
    You have them listed under wrong headings.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  18. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,274
    94,761
    450
    fixed:)
     
  19. jonaand

    jonaand MDL Senior Member

    Aug 4, 2012
    359
    31
    10
    where get Windows 11 IoT Enterprise es-mx
     
  20. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,274
    94,761
    450