Windows 11 SVF Repository

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

  1. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    54,755
    125,007
    450
    #621 Enthousiast, Apr 22, 2026
    Last edited: Apr 27, 2026
    (OP)
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. celrocha

    celrocha MDL Novice

    Jul 22, 2011
    34
    111
    0
  3. fabricio simoes

    fabricio simoes MDL Senior Member

    Dec 17, 2020
    328
    90
    10
    #624 fabricio simoes, Apr 23, 2026
    Last edited: Apr 23, 2026
    How do you convert the March ISO to the April 2026 ISO? do you know how to do it @abbodi1406?
     
  4. celrocha

    celrocha MDL Novice

    Jul 22, 2011
    34
    111
    0
    I didn't understand your question. This file is a SmartVersion. If you have the March file, simply download this file to get the April version. If you don't have any version downloaded yet, I recommend downloading the April version directly.
     
  5. egyptian hak

    egyptian hak MDL Senior Member

    Aug 21, 2009
    301
    77
    10
    He knew that but he means the file is too big the smart version file should be smaller than the file you made so he ask you how you made it
     
  6. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    54,755
    125,007
    450
    By putting both ISOs (march and april) in the same folder and drag and drop the old one (march) on the script i gave you the other week.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. fabricio simoes

    fabricio simoes MDL Senior Member

    Dec 17, 2020
    328
    90
    10
    I understand perfectly, thank you @Enthousiast, but isn't it easier to download the April iso directly? Than download both isos to create a patch? I think it's a good idea to download the April iso directly, as you always make it available to us. But thank you, I understand the question, I know how to do it. . .
     
  8. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    54,755
    125,007
    450
    You asked how to do it, i told you how ;)

    SVF method is meant for people who want more then one ISO but don't have the download capacity for downloading 2 or more full ISOs. Some people asked for these specific patches because in the past they were not really that big, these days with all the updates integrated (thus very different and huge) the patches from old to new month became that big that downloading the full iso seems much easier and faster.

    For sharing bigger amount of isos svf or dvp is the best method, less bandwith and storage required.

    In the past we downloaded the en-US consumer ISO as soon as someone published it and all other desired isos we downloaded/shared as SVF based on that ISO.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  9. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    54,755
    125,007
    450
    #630 Enthousiast, Apr 23, 2026
    Last edited: Apr 23, 2026
    (OP)
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  10. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    54,755
    125,007
    450
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. fabricio simoes

    fabricio simoes MDL Senior Member

    Dec 17, 2020
    328
    90
    10
    Perfect for sharing in all languages, it makes up for a huge difference for this purpose, it's very good.
     
  12. celrocha

    celrocha MDL Novice

    Jul 22, 2011
    34
    111
    0
  13. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    54,755
    125,007
    450
    You can find it here:

    https://forums.mydigitallife.net/threads/smartversion-tools-scripts.79415/page-22#post-1715665

    I see my current script is a bit updated at the hash settings and such:

    Code:
    :: drag and drop a Source file onto this batch
    
    @echo off
    
    set SmvExec=c:\Program Files\SmartVersion\smv.exe
    
    set OutDir=.\EN2XX-SVF
    
    :: max number of SMVs to run simultaneously
    set RunInst=2
    
    
    
    
    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 28 -compressratio 192 -sha1 -sha256 -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
    
    This is a simple script for drag and drop source iso on the script to svf patch all other isos in the same folder.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    54,755
    125,007
    450
    #635 Enthousiast, Apr 24, 2026
    Last edited: Apr 27, 2026
    (OP)
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  15. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    54,755
    125,007
    450
    #636 Enthousiast, Apr 25, 2026
    Last edited: Apr 28, 2026
    (OP)
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  16. Carlos Detweiller

    Carlos Detweiller Emperor of Ice-Cream
    Staff Member

    Dec 21, 2012
    8,041
    10,269
    270
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  17. liliactr

    liliactr MDL Addicted

    Sep 3, 2009
    684
    260
    30
    Can upload or mirror else than mega?
    en-us_windows_11_consumer_editions_version_24h2_updated_march_2026_x64_dvd_2f555385_to_en-us_windows_11_consumer_editions_version_24h2_updated_april_2026_x64_dvd_2c0d1958.svf
     
  18. egyptian hak

    egyptian hak MDL Senior Member

    Aug 21, 2009
    301
    77
    10
    Thank you all done now