got a question. how would i install the ltsb 2015 updates on home or pro of 1507 ? is there a easy way to do it?
Before UUP dump showed up, I create ISO by myself. Which means I can make it without UUP dump script, right? One day, someone asked me a question which is about 15063, and the problem can be easily solved from UUP dump. Then I found the UUP dump link from MDL is down, and the one from Russia is still working. I don't know the author of MDL UUP dump, and I did not feekback. I just talked about it here right in this thread. Right away, the problem is solved, and I was noticed from the author (or his friend) about it.
Microsoft uses this to control update applicability. Code: <parent buildCompare="EQ" integrate="separate" disposition="detect"> <assemblyIdentity name="Microsoft-Windows-EnterpriseSEdition" language="neutral" version="10.0.10240.16384" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" buildType="release" /> <assemblyIdentity name="Microsoft-Windows-EnterpriseSNEdition" language="neutral" version="10.0.10240.16384" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" buildType="release" />
Q: While re-construction, integrate EnterpriseS' updates to mounted image of 10240.16384 end-of-service editions, possible? A: Code: :::::::::::::::::::::::::::::::::::: Adding updates :::::::::::::::::::::::::::::::::::: Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.10240.16384 Processing 1 of 1 - Adding package Package_for_KB5001079~31bf3856ad364e35~amd64~~10240.18843.1.0 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.10240.18843 Processing 1 of 1 - Adding package Package_for_RollupFix~31bf3856ad364e35~amd64~~10240.18875.1.0 [==========================100.0%==========================] An error occurred - Package_for_RollupFix Error: 0x800f0922 Error: 0x800f0922 DISM failed. No operation was performed. For more information, review the log file. The DISM log file can be found at C:\WINDOWS\Logs\DISM\dism.log
[SAC Update Trick Status] Code: if %BUILD% geq 18362 goto:CONT if %BUILD% equ 10240 set "UPDATE=EnterpriseS" if %BUILD% equ 10586 set "UPDATE=Enterprise" if %BUILD% equ 14393 set "UPDATE=EnterpriseS" if %BUILD% equ 15063 set "UPDATE=Enterprise" (for 15063 PPIPro updates) if %BUILD% equ 16299 set "UPDATE=Enterprise" if %BUILD% equ 17763 set "UPDATE=EnterpriseS"
Q: In a script, how to set language code for correct language display of install.wim information? 1. set your language code for your System language Code: for /f "tokens=6 delims= " %%x in ('DISM /Online /English /Get-Intl ^| findstr /i /C:"Default system UI language"') do (set HOSTLANG=%%x) if %HOSTLANG%==xx-XX chcp xxx >nul 2. set Target display language Code: for /f "tokens=3 delims=: " %%x in ('files\wimlib-imagex info install.wim 1 ^| findstr /i /C:"Default Language"') do (set LANG=%%x) Code: set "NAME=Windows 10 %CURRENT%" set "DISP=Windows 10 Home" if %LANG%==zh-CN set "DISP=Windows 10 家庭版" if %LANG%==zh-TW set "DISP=Windows 10 家用版" if %LANG%==ru-RU set "DISP=Windows 10 Домашняя версия" Done
People ask about 1. using EnterpriseS' updates on SAC editions. 2. integrating .NET Framework 4.8 to 10240 and 10586. Q: Why you don't post it? A: Because it is in the relevant scripts I shared here.