Hi! I'm a bit new to using this wonderful tool and can't figure out how to put updates on an ISO. I want to update the official LTSB 2016 ISO, which can be found here at the forum, with the latest comulative update and other security updates like .net 4.8. Is there a guide on how to do this? Thanks!
Perhaps this post will help you at least a little bit (I hope): https://forums.mydigitallife.net/threads/msmg-toolkit.50572/page-1051#post-1699504)
Just built my 19043.1348 images from UUP dump. Now I just wait for @MSMG to perform his magic as usual!
Added two Registry files into latest Windows 11 22000.318 and Windows 10 19044.1348 but after install non of them have been applied. Why it didn´t work? Below are both registry files added: Code: [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel] "{20D04FE0-3AEA-1069-A2D8-08002B30309D}"=dword:00000000 "{59031a47-3f72-44a7-89c5-5595fe6b30ee}"=dword:00000000 "{F02C1A0D-BE21-4350-88B0-7367FC96EF3C}"=dword:00000000 "{645FF040-5081-101B-9F08-00AA002F954E}"=dword:00000000 "{5399E694-6CE5-4D6C-8FCE-1D8870FDCBA0}"=dword:00000000 Code: [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons] "29"="C:\\Windows\\Blank.ico,0" Blank.ico added mnually into install.wim Works well with v11.7. The issue is just with v11.8
MSMG, Code: RemovePkgsList_W10_10.0.19044 - list of exceptions to remove InternetExplorer FirstLogonAnimation SnippingTool WindowsMediaPlayer WindowsPhotoViewer WinSAT KernelDebugging WiFiNetworkManager Paint WindowsFirewall Wordpad OOBENetworkCaptivePortal OOBENetworkConnectionFlow WindowsStoreClient Calculator After automatic driver installation, errors occur when trying to open the Intel HD Graphics Driver, but after rebooting they disappear. Code: if "%Tweak%" equ "DisableDriversUpdates" ( Reg add "HKLM\TK_SOFTWARE\Policies\Microsoft\Windows\Device Metadata" /v "PreventDeviceMetadataFromNetwork" /t REG_DWORD /d "1" /f >nul Reg add "HKLM\TK_SOFTWARE\Policies\Microsoft\Windows\DriverSearching" /v "DontPromptForWindowsUpdate" /t REG_DWORD /d "1" /f >nul Reg add "HKLM\TK_SOFTWARE\Policies\Microsoft\Windows\DriverSearching" /v "DontSearchWindowsUpdate" /t REG_DWORD /d "1" /f >nul Reg add "HKLM\TK_SOFTWARE\Policies\Microsoft\Windows\DriverSearching" /v "DriverUpdateWizardWuSearchEnabled" /t REG_DWORD /d "0" /f >nul Reg add "HKLM\TK_SOFTWARE\Policies\Microsoft\Windows\DriverSearching" /v "SearchOrderConfig" /t REG_DWORD /d "1" /f >nul Reg add "HKLM\TK_SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /v "ExcludeWUDriversInQualityUpdate" /t REG_DWORD /d "1" /f >nul ) These settings don't work, as I said before the drivers are still downloaded and installed automatically.
How to integrate/update the new Store into the 19044 image? I have this files: Microsoft.WindowsStore_22110.1401.16.0_neutral___8wekyb3d8bbwe Microsoft.UI.Xaml.2.7_7.2109.13004.0_x64__8wekyb3d8bbwe
Since the Toolkit's component removal program was updated to support previous preview updates, as expected there's no changes in the yesterday's patch Tuesday's update for 1904x builds with respect to removed components. Even for W11 there was no change only just the defender component required a small update, need to check with v1809 and v1836x builds. If everything goes fine will release the next version tomorrow.
Try this, open a admin command prompt and run the below command in the Toolkit's directory, change the path as you require Code: PowerShell -Executionpolicy Bypass -File Bin\ConvertReg.ps1 <RegistryFolderPath> <TempPath> Now, you will get a converted reg file inside the above <TempPath>, do check the file if it's properly converted and has the registry tweaks you are missing.
So you excluded these components and removed the other components, did you changed the order of removed components? Those are the available tweaks to disable automatic driver downloading, if you find any new working tweaks do let me will add them.
For Windows 10.0.16299.0 - 10.0.18363.0 Code: Microsoft.WindowsStore_12107.1001.15.0_neutral_~_8wekyb3d8bbwe.appxbundle Microsoft.NET.Native.Framework.2.2_2.2.29512.0_x64__8wekyb3d8bbwe.appx Microsoft.NET.Native.Runtime.2.2_2.2.28604.0_x64__8wekyb3d8bbwe.appx Microsoft.UI.Xaml.2.4_2.42007.9001.0_x64__8wekyb3d8bbwe.appx Microsoft.VCLibs.140.00_14.0.30704.0_x64__8wekyb3d8bbwe.appx Code: Dism /Online /Add-ProvisionedAppxPackage /PackagePath:Microsoft.WindowsStore_12107.1001.15.0_neutral_~_8wekyb3d8bbwe.appxbundle /DependencyPackagePath:Microsoft.NET.Native.Framework.2.2_2.2.29512.0_x64__8wekyb3d8bbwe.appx /DependencyPackagePath:Microsoft.NET.Native.Runtime.2.2_2.2.28604.0_x64__8wekyb3d8bbwe.appx /DependencyPackagePath:Microsoft.UI.Xaml.2.4_2.42007.9001.0_x64__8wekyb3d8bbwe.appx /DependencyPackagePath:Microsoft.VCLibs.140.00_14.0.30704.0_x64__8wekyb3d8bbwe.appx /LicensePath:Microsoft.WindowsStore_8wekyb3d8bbwe.xml For Windows 10.0.18362.0 - 10.0.22000.0 Code: Microsoft.WindowsStore_22110.1401.16.0_neutral_~_8wekyb3d8bbwe.msixbundle Microsoft.NET.Native.Framework.2.2_2.2.29512.0_x64__8wekyb3d8bbwe.appx Microsoft.NET.Native.Runtime.2.2_2.2.28604.0_x64__8wekyb3d8bbwe.appx Microsoft.UI.Xaml.2.7_7.2109.13004.0_x64__8wekyb3d8bbwe.appx Microsoft.VCLibs.140.00_14.0.30704.0_x64__8wekyb3d8bbwe.appx Code: Dism /Online /Add-ProvisionedAppxPackage /PackagePath:Microsoft.WindowsStore_22110.1401.16.0_neutral_~_8wekyb3d8bbwe.msixbundle /DependencyPackagePath:Microsoft.NET.Native.Framework.2.2_2.2.29512.0_x64__8wekyb3d8bbwe.appx /DependencyPackagePath:Microsoft.NET.Native.Runtime.2.2_2.2.28604.0_x64__8wekyb3d8bbwe.appx /DependencyPackagePath:Microsoft.UI.Xaml.2.7_7.2109.13004.0_x64__8wekyb3d8bbwe.appx /DependencyPackagePath:Microsoft.VCLibs.140.00_14.0.30704.0_x64__8wekyb3d8bbwe.appx /LicensePath:Microsoft.WindowsStore_8wekyb3d8bbwe.xml For Windows 10.0.22000.0 and above Code: Microsoft.WindowsStore_22110.1402.13.0_neutral_~_8wekyb3d8bbwe.msixbundle Microsoft.NET.Native.Framework.2.2_2.2.29512.0_x64__8wekyb3d8bbwe.appx Microsoft.NET.Native.Runtime.2.2_2.2.28604.0_x64__8wekyb3d8bbwe.appx Microsoft.UI.Xaml.2.7_7.2109.13004.0_x64__8wekyb3d8bbwe.appx Microsoft.VCLibs.140.00_14.0.30704.0_x64__8wekyb3d8bbwe.appx Code: Dism /Online /Add-ProvisionedAppxPackage /PackagePath:Microsoft.WindowsStore_22110.1402.13.0_neutral_~_8wekyb3d8bbwe.msixbundle /DependencyPackagePath:Microsoft.NET.Native.Framework.2.2_2.2.29512.0_x64__8wekyb3d8bbwe.appx /DependencyPackagePath:Microsoft.NET.Native.Runtime.2.2_2.2.28604.0_x64__8wekyb3d8bbwe.appx /DependencyPackagePath:Microsoft.UI.Xaml.2.7_7.2109.13004.0_x64__8wekyb3d8bbwe.appx /DependencyPackagePath:Microsoft.VCLibs.140.00_14.0.30704.0_x64__8wekyb3d8bbwe.appx /LicensePath:Microsoft.WindowsStore_8wekyb3d8bbwe.xml