1. 0xExynos

    0xExynos MDL Junior Member

    Aug 5, 2021
    50
    4
    0
    Any way unofficialy (like via UUPDump) to create ourselves refreshed ISO with all updates so far?
     
  2. Paul Mercer

    Paul Mercer MDL Expert

    Apr 6, 2018
    1,310
    2,869
    60
    .NET Framework 3.5 updates are included in Cumulative Update for .NET Framework 4.8 and 4.8.1
    you need to enable .NET Framework 3.5 feature first in W10UI config if it's not enabled in your ISO, then you can integrate updates for it

    if you want to stay on .NET Framework 4.8: integrate only KB5017022
    or
    if you want to upgrade to .NET Framework 4.8.1: integrate only KB5011048 and KB5017025
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,027
    93,876
    450
    When you set this inside the main script
    Code:
    :: enable .NET 3.5 feature
    set Net35=1
    
    :: optional, specify custom "folder" path for microsoft-windows-netfx3-ondemand-package.cab
    set "Net35Source="
    
    Or inside the ini file
    Code:
    Net35         =1
    Net35Source   =
    
    to 1 and provide a source cab or the extracted ISO it will pre-enable .netfx35, during updates integration only, when there are no updates provided it won't pre-enable .netfx35.
     
  4. qwesta

    qwesta MDL Senior Member

    Jul 22, 2011
    312
    110
    10
    Are you actually meaning, it is advisable to use an extracted ISO instead of mounting it?
    If so, how should the ini file look like?
    Thank you for your insight
     
  5. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,027
    93,876
    450
    Mounted ISO or extracted ISO, both can be used by W10UI, it will check "sources\sxs" for the needed cab, if the cab is not available on the used source then you can set a specific path to the sxs folder containing the cab, this is what i always do in the main script (i never use the ini file for W10UI):

    Code:
    @setlocal DisableDelayedExpansion
    @set uiv=v10.23
    @echo off
    :: enable debug mode, you must also set target and repo (if updates are not beside the script)
    set _Debug=0
    
    :: when changing below options, recommended to set the new values between = and " marks
    
    :: target distribution, wim file or offline image
    :: leave it blank to update current online os, or automatically detect wim file next to the script
    set "Target=%~dp019045_Work_x64_US"
    
    :: updates location
    :: leave it blank to automatically detect the current script directory
    set "Repo=%~dp019045_Updates_x64"
    
    :: dism.exe tool custom path (if Host OS is Win8.1 or earlier and no Win10 ADK installed)
    set "DismRoot=dism.exe"
    
    :: enable .NET 3.5 feature
    set Net35=1
    
    :: optional, specify custom "folder" path for microsoft-windows-netfx3-ondemand-package.cab
    set "Net35Source=%~dp019041.1_SXS_x64"
    
    :: Cleanup OS images to "compress" superseded components (might take long time to complete)
    set Cleanup=1
    
    :: Rebase OS images to "remove" superseded components (warning: break "Reset this PC" feature)
    :: require first to set Cleanup=1
    set ResetBase=1
    
    :: update winre.wim if detected inside install.wim
    set WinRE=1
    
    :: Force updating winre.wim with Cumulative Update even if SafeOS update detected
    set LCUwinre=0
    
    :: update ISO boot files bootmgr/bootmgr.efi/efisys.bin from Cumulative Update
    set UpdtBootFiles=1
    
    :: 1 = do not install EdgeChromium with Enablement Package or Cumulative Update
    :: 2 = alternative workaround to avoid EdgeChromium with Cumulative Update only
    set SkipEdge=0
    
    :: optional, set directory for temporary extracted files (default is on the same drive as the script)
    set "_CabDir=c:\W10UItemp"
    
    :: optional, set mount directory for updating wim files (default is on the same drive as the script)
    set "MountDir=c:\W10UImount"
    set "WinreMount=c:\W10UImountre"
    
    :: start the process directly once you execute the script, as long as the other options are correctly set
    set AutoStart=0
    
    :: # Options for distribution target only #
    
    :: convert install.wim to install.esd
    :: warning: the process will consume very high amount of CPU and RAM resources
    set wim2esd=0
    
    :: split install.wim into multiple install.swm files
    :: note: if both options are 1, install.esd takes precedence over split install.swm
    set wim2swm=0
    
    :: create new iso file
    :: require Win10 ADK, or place oscdimg.exe or cdimage.exe next to the script, or inside bin folder
    set ISO=1
    
    :: folder path for iso file, leave it blank to create ISO in the script current directory
    set "ISODir="
    
    :: delete DVD distribution folder after creating updated ISO
    set Delete_Source=0
    Code:
    # Supported targets:
    - Current Online OS
    - Offline image (already mounted directory, or another partition)
    - Distribution folder (extracted iso, copied dvd/usb)
    - Distribution Drive (virtual mounted iso, inserted dvd drive, usb drive)
    - WIM file directly (unmounted)
     
  6. Quaint10

    Quaint10 MDL Member

    Mar 15, 2018
    171
    32
    10
    can anyone tell me how to degrade or upgrade windows 10 iot ltsc to windows 11 pro without clean install?
     
  7. dorfd1

    dorfd1 MDL Senior Member

    Sep 10, 2015
    267
    91
    10
    when i upgraded my desktop pc rom windows 10 Enterprise to windows 10 enterprise ltsc, all i did wa change the edition id to from Enterprise to EnterprieS and that let me do an in place upgrade without loosing stuf.

    change the Edition ID to Professional then it will let do an upgrade
     
  8. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,027
    93,876
    450
  9. Magmarock

    Magmarock MDL Member

    Oct 12, 2016
    175
    22
    10
    Can anyone please tell me what the generic RTM key is for LTSC IOT 2021. I FOUND IT, I HAD IT, then I lost it :<

    Google is not helping lol.
     
  10. Magmarock

    Magmarock MDL Member

    Oct 12, 2016
    175
    22
    10
    Nevermind, found it in a bookmark
     
  11. Quaint10

    Quaint10 MDL Member

    Mar 15, 2018
    171
    32
    10
  12. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,027
    93,876
    450
  13. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,027
    93,876
    450
  14. tpmenthusiast

    tpmenthusiast MDL Novice

    Sep 25, 2022
    2
    0
    0
    #2637 tpmenthusiast, Sep 25, 2022
    Last edited: Sep 25, 2022
    Hello I downloaded the Windows "Official 19044.1288 (IoT) Enterprise LTSC 2021 MVS Direct ISOs" File.
    I plan on activating it with this Tool "MAS" with HWID option.
    I plan on using this OS for playing Anti-Cheat protected Games since Linux has problems with those.
    Is there anything I should be aware of thanks in advance.
     
  15. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,027
    93,876
    450
    Not allowed to link at MAS.

    Is not the best choice for gaming.
     
  16. tpmenthusiast

    tpmenthusiast MDL Novice

    Sep 25, 2022
    2
    0
    0
    From my Research everything but the Store Games should work(?)
    My question was more if I should integrate Updates beforehand?
     
  17. acer-5100

    acer-5100 MDL Guru

    Dec 8, 2018
    3,645
    2,620
    120
    There is no problem at all with games. Some games may require the store to install crap, but the store is easily installable in LTSC