How to intergrate.net 4.8 on Windows 10 2015 LTSB?

Discussion in 'Windows 10' started by ccrqc357, Aug 10, 2023.

  1. ccrqc357

    ccrqc357 MDL Member

    Feb 28, 2017
    249
    24
    10
    I love using 2015 LTSB in old systems with limited space and ram but there's no .net 4.8 support

    I found a script here but I don't know how to manually integrate it on my custom made 2015 LTSB x86&x64 .esd ISO I've made a while back
     
  2. pm67310

    pm67310 MDL Guru

    Sep 6, 2011
    3,349
    2,522
    120
    check script section by abbodhi
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. ccrqc357

    ccrqc357 MDL Member

    Feb 28, 2017
    249
    24
    10
    I did but i dont know how to intergrate it in my LTSB 2015 x86&x64 image Ive made previously using UPP dump multi arch scrupt and then compressing it with Enthousiast Win_ISO_W_ESD-SWM_Tool.
    abbodhi tool requires to manually mount the needed index of install.wim using DISM.exe tool and then running the .cmd file which I dont know how to do and how to do it on a x86&x64 esd ISO Ive made
     
  4. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,656
    103,438
    450
    #4 Enthousiast, Aug 11, 2023
    Last edited: Aug 11, 2023
    The script probably needs the ISOs to be separated into a x86 and a x64 version to be able to run.

    If it only needs the install.wim to be mounted then you can extract it from the ISO and run this command in an elevated cmd prompt:

    Code:
    mkdir "%SystemDrive%\Mount"
    
    Dism /mount-wim /wimfile:x:\install.wim /index:1 /mountdir:"%SystemDrive%\Mount"
    Put all needed files next to DNF48.cmd run the cmd and follow the readme from the tool.

    When the tool is finished you can run this command in the cmd prompt to save and unmount the install.wim and delete the used mount folder:
    Code:
    DISM /Unmount-Image /MountDir:"%SystemDrive%\Mount" /Commit
    
    RD /S /Q "%SystemDrive%\Mount"
    If there are more indexes to be updated then rerun the command lines with adjusted index number.

    When one install.wim is finished then you can replace the original one with the updated one.
     
  5. ccrqc357

    ccrqc357 MDL Member

    Feb 28, 2017
    249
    24
    10
    The .wim images only have one version of Windows 10 LTSB so I need to do it separately and then again UPP and Win10 tool to compress it
    Thanks @Enthousiast you're the best !
     
  6. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,656
    103,438
    450
    #6 Enthousiast, Aug 12, 2023
    Last edited: Aug 12, 2023
    If you have a multi-arch ISO with two separate install.wim files, you can simply replace the old install.wim files with the updated ones.