No way because it uses new update technology different to that for 17763.1 and backward. The only way for versions from 18362.1 forward is "Custom Updates".
Well, Edition is one thing, Update is another. Afterall, the update goes with which edition it was applied to. e.g. Core, which includes Pro. (LCU supports both Core and Pro) The LCU will update both editions at a time. Hence, when Core is upgraded to Pro, Core is removed, and updated Pro is ready for you.
The easiest way is edition-switch which can be updated to date. But it is another ancient topic. https://forums.mydigitallife.net/th...nstruction-project.80939/page-89#post-1646621 https://forums.mydigitallife.net/th...nstruction-project.80939/page-87#post-1645920 https://forums.mydigitallife.net/th...nstruction-project.80939/page-89#post-1646629
Hi @xinso This script works Code: for /f %%a in ('dism /scratchdir:temp /image:mount /get-features /format:table ^|find "| Enabled"') do (dism /scratchdir:temp /image:mount /disable-feature:%%a) Just want to ask for your opinion Can it be improved?
This is how I change install.wim information Code: wimlib-imagex info install.wim 1 --image-property NAME="" --image-property DESCRIPTION="" --image-property DISPLAYNAME="" --image-property DISPLAYDESCRIPTION="" --image-property WINDOWS/EDITIONID="" --image-property FLAGS="" wimlib-imagex info install.wim 1 --image-property NAME="Windows 10 Enterprise S" --image-property DESCRIPTION="Windows 10 Enterprise S" --image-property DISPLAYNAME="Windows 10 Enterprise S" --image-property DISPLAYDESCRIPTION="Windows 10 Enterprise S" --image-property WINDOWS/EDITIONID="EnterpriseS" --image-property FLAGS="EnterpriseS"
@ #1809 A: It works, really? Edit: Yes, it works. Code: for /f %%a in ('dism /english /image:z:\1 /get-features /format:table ^|find "| Enabled"') do ( echo. echo Disabling %%a dism /english /quiet /image:z:\1 /disable-feature:%%a ) Code: Disabling Printing-PrintToPDFServices-Features Disabling Windows-Defender-Default-Definitions Disabling Printing-XPSServices-Features Disabling SearchEngine-Client-Package Disabling MSRDC-Infrastructure Disabling WorkFolders-Client Disabling Printing-Foundation-Features Disabling Printing-Foundation-InternetPrinting-Client Disabling MicrosoftWindowsPowerShellV2Root Disabling MicrosoftWindowsPowerShellV2 Disabling NetFx4-AdvSrvs Disabling WCF-Services45 Disabling WCF-TCP-PortSharing45 Disabling MediaPlayback Disabling WindowsMediaPlayer Disabling SmbDirect Disabling Internet-Explorer-Optional-amd64 @ #1810 A: Very good.
I tried making the enterpriseg wim but i get the error while 1.xml unattended is being applied: Error: 1168 Element not found Please help!
Try this one. https://forums.mydigitallife.net/th...nstruction-project.80939/page-89#post-1646788 Result https://forums.mydigitallife.net/th...nstruction-project.80939/page-90#post-1646859