For this package, we have to wait for @MSMG to launch the update. At the moment, what you can do is put the last NET5 pack inside the NET6 folder and rename to NET6.
Created AIO win10 Current Installed Online OS packages Removal Script. working great at my side from 10586 till latest 1904x but the way MSMG toolkit removes leftovers too is awesome . still recommend users not to use my packages removal script but to Use MSMG toolkit on offline Image which does the job flawlessly.
if anyone uses defender application guard in w10 enterprise ltsc 2021, removing remotedesktopclient & remotedesktopserver will break it
@MSMG, Someone had reported a bug from the InboxApps AppLicense. Spoiler: Report Microsoft Default Inbox Apps .xml files are missing... Please copy the missing files to <Packs\Apps\w10> folder... This will occur for anyone who has never downloaded the licenses or already deleted them from the .\Packs\Apps\w81 folder, .\Packs\Apps\w10 or .\Packs\Apps\w11. In order to be able to integrate the Inbox Apps, simply delete the following block of the toolkit code, Code: if not exist "%Apps%\*.xml" ( echo.Microsoft Default Inbox Apps .xml files are missing... echo. echo.Please copy the missing files to ^<Packs\Apps\%SelectedSourceOS%^> folder... echo. goto :Stop ) or replace by the suggested below. Code: if not exist "%AppLicense%\*.xml" ( echo.Microsoft Default Inbox Apps .xml License files are missing... echo. echo.Please copy the missing files to ^<Bin\AppLicense^> folder... echo. goto :Stop )
@MSMG , In toolkit 12.0 between lines 18163 and 18175: Code: echo.------------------------------------------------------------------------------- echo.####Starting Remove Windows Apps Using Apps List############################### echo.------------------------------------------------------------------------------- echo. echo. echo. 映像文件名称 :Install.wim echo. 映像索引 :%ImageIndexNo% echo. 映像体系结构 :%ImageArchitecture% echo. 映像版本 :%ImageVersion%.%ImageServicePackBuild%.%ImageServicePackLevel% echo. echo.------------------------------------------------------------------------------- echo.####Removing Windows Apps Using Apps List###################################### echo.------------------------------------------------------------------------------- It should be like: Code: echo.------------------------------------------------------------------------------- echo.####Starting Remove Windows Apps Using Apps List############################### echo.------------------------------------------------------------------------------- echo. echo. 映像文件名称 :Install.wim echo. 映像索引 :%ImageIndexNo% echo. 映像体系结构 :%ImageArchitecture% echo. 映像版本 :%ImageVersion%.%ImageServicePackBuild%.%ImageServicePackLevel% echo. echo.------------------------------------------------------------------------------- echo.####Removing Windows Apps Using Apps List###################################### echo.------------------------------------------------------------------------------- Pay attention under line "echo.####Starting Remove Windows Apps Using Apps List###############################". It has an extra line of white space that shouldn't exist
Hoping you can solve. Yes, your Windows 8.1 files are allocated elsewhere in HD. It is very likely that there are windows 7 files that you are working, corrupted or in some HD area that has a problem. Check the hash from your official ISOS.
Offline commands: capability.cmd Code: @echo off set mountdir=C:\mount setlocal EnableExtensions EnableDelayedExpansion for %%c in ( DirectX.Configuration.Database~~~~0.0.1.0 Hello.Face.18967~~~~0.0.1.0 Hello.Face.Migration.18967~~~~0.0.1.0 Language.Handwriting~~~en-US~0.0.1.0 Language.OCR~~~en-US~0.0.1.0 Language.Speech~~~en-US~0.0.1.0 Language.TextToSpeech~~~en-US~0.0.1.0 Language.Basic~~~en-US~0.0.1.0 MathRecognizer~~~~0.0.1.0 OneCoreUAP.OneSync~~~~0.0.1.0 OpenSSH.Client~~~~0.0.1.0 Print.Fax.Scan~~~~0.0.1.0 Print.Management.Console~~~~0.0.1.0 Windows.Client.ShellComponents~~~~0.0.1.0 ) do ( dism /image:%mountdir% /remove-capability /CapabilityName:%%c ) dism /image:%mountdir% /get-capabilities /format:table | find "Installed" | more ) pause features.cmd Code: @echo off set mountdir=C:\mount setlocal EnableExtensions EnableDelayedExpansion for %%f in ( LegacyComponents DirectPlay ) do ( dism /image:%mountdir% /enable-feature /featurename:%%f ) for %%f in ( Printing-PrintToPDFServices-Features Printing-XPSServices-Features WCF-Services45 WCF-TCP-PortSharing45 MediaPlayback WindowsMediaPlayer SmbDirect Windows-Defender-Default-Definitions SearchEngine-Client-Package MSRDC-Infrastructure WorkFolders-Client Printing-Foundation-Features Printing-Foundation-InternetPrinting-Client MicrosoftWindowsPowerShellV2Root MicrosoftWindowsPowerShellV2 NetFx4-AdvSrvs Internet-Explorer-Optional-amd64 ) do ( dism /image:%mountdir% /disable-feature /featurename:%%f ) dism /image:%mountdir% /get-features /format:table | find "Enabled" | more ) pause install_wim_tweak.cmd Code: @echo off cd /d "%~dp0" set mountdir=C:\mount setlocal EnableExtensions EnableDelayedExpansion for %%p in ( Microsoft-Windows-FodMetadata-Package Microsoft-Windows-MediaPlayer-Package ) do ( install_wim_tweak.exe /p %mountdir% /c %%p /r ) pause ) del SOFTWAREBKP
Should be without closing parentheses: Code: dism /image:%mountdir% /get-capabilities /format:table | find "Installed" | more pause Should be without closing parentheses: Code: dism /image:%mountdir% /get-features /format:table | find "Enabled" | more pause Should be without closing parentheses: Code: pause del SOFTWAREBKP I know that by being small scripts, this extra closure parentheses will not be problems, but may be, if they are used in the middle of a more complex code. Only closing the "do command block" should be with parentheses. Thnx for the very good contribution!
Could you please provide the download link of MSMG again? It seems to have failed. Thank you very much!