How integrates windows updates

Discussion in 'Windows 10' started by WebCracKer, May 16, 2023.

  1. WebCracKer

    WebCracKer MDL Novice

    Nov 15, 2013
    19
    0
    0
    Hello all
    I am using ntlite to integrate updates into windows
    But I have to integrates all updates into each editions
    Is there a way to integrates all updates in all editions one time
    Or there is another way without ntlite to do the job

    Thanks in advance
     
  2. Dark Dinosaur

    Dark Dinosaur X Æ A-12

    Feb 2, 2011
    2,985
    3,964
    90
    Integrate in one edition
    Export .. change edition...
    Append ... Loop it ..
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    44,281
    84,025
    450
    #3 Enthousiast, May 16, 2023
    Last edited: May 16, 2023
    I do it once on the lowest SKU (home in my case), using W10UI and all other editions are /set-edition'ed from home.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. WebCracKer

    WebCracKer MDL Novice

    Nov 15, 2013
    19
    0
    0
    So I have to integrate the first edition and append and so on
     
  5. WebCracKer

    WebCracKer MDL Novice

    Nov 15, 2013
    19
    0
    0
    Is that tool work for others windows versions or just windows 10

    Thanks
     
  6. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    44,281
    84,025
    450
    #6 Enthousiast, May 16, 2023
    Last edited: May 16, 2023
    The W10UI version works for 10 and up, there are separate W7UI and W8UI scripts available.

    Here is a small example snippet of my AiO script which i run after W10UI has finsihed on Home:

    Code:
    dism /Export-Image /SourceImageFile:"AiO\x86\Sources\install.wim" /SourceIndex:1 /DestinationImageFile:"AiO\x86\Sources\aio.install.wim" /Compress:max
    Bin\imagex /flags "Core" /info "AiO\x86\Sources\aio.install.wim" 1 "Win 10 (22H2) Home x86 nl-NL (19045.2965)" "Win 10 (22H2) Home x86 nl-NL (19045.2965)"
    REM Pro:
    dism /Export-Image /SourceImageFile:"AiO\x86\Sources\install.wim" /SourceIndex:1 /DestinationImageFile:"AiO\x86\Sources\sku.wim" /Compress:max
    Dism /mount-wim /wimfile:AiO\x86\Sources\sku.wim /index:1 /mountdir:c:\mount
    dism /Image:C:\Mount /Set-Edition:Professional /Channel:Retail
    dism /Unmount-Image /MountDir:C:\Mount /Commit
    
    dism /Export-Image /SourceImageFile:"AiO\x86\Sources\sku.wim" /SourceIndex:1 /DestinationImageFile:"AiO\x86\Sources\aio.install.wim" /Compress:max
    del AiO\x86\Sources\sku.wim
    Bin\imagex.exe /flags "Professional" /info "AiO\x64\Sources\aio.install.wim" 5 "Win 10 (22H2) Professional x64 nl-NL (19045.2695)" "Win 10 (22H2) Professional x64 nl-NL (19045.2965)"
    .....
    REM Enterprise
    dism /Export-Image /SourceImageFile:"AiO\x86\Sources\install.wim" /SourceIndex:1 /DestinationImageFile:"AiO\x86\Sources\sku.wim" /Compress:max
    
    Dism /mount-wim /wimfile:AiO\x86\Sources\sku.wim /index:1 /mountdir:c:\mount
    dism /Image:C:\Mount /Set-Edition:Enterprise /Channel:Volume
    dism /Unmount-Image /MountDir:C:\Mount /Commit
    
    dism /Export-Image /SourceImageFile:"AiO\x86\Sources\sku.wim" /SourceIndex:1 /DestinationImageFile:"AiO\x86\Sources\aio.install.wim" /Compress:max
    del AiO\x86\Sources\sku.wim
    
    Bin\imagex.exe /flags "Enterprise" /info "AiO\x64\Sources\aio.install.wim" 3 "Win 10 (22H2) Enterprise x64 nl-NL (19045.2965)" "Win 10 (22H2) Enterprise x64 nl-NL (19045.2965)"
    
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...