But it should work anyway, however, without the features corrected in the new version that are related to the inbox apps and small details in the remove menu. In fact, it is not incompatible with the new version. Only it is best to be alert that the new Custom Toolkit has not yet been released. What is the problem going on? Then I already release with it fixed.
Toolkit_Beta.cmd is obsolete too, could be deleted. If you run through the GenericStart_Launchermenu, the Official Toolkit is 12.0 and the Custom Toolkit for now is 11.9. But even in version 11.9 it should work. If you find some problem running the Custom Toolkit, let me know.
I need to Integrate Edge Chromium to My Windows 7 master, does anyone have file Windows6.1-KB5006749-x64.cab and Windows6.1-KB5006749-x86.cab? Its seem missing from packs folder...
RemovePkgsList_W10_LTSC_2021.txt does not list TelnetClient, TFTPClient. Where did you get them from maybe from RemovePkgsList_W11_10.0.22000 or some other place? What this Win32WebViewHost component is for, and where can I get a description of each component individually?
Black Kamen Rider, In folders, in which there are text files with download links, made available by MSMG, I put a script (DownloadExtract.cmd) that downloads the MSU files, extracts the CABs and deletes the remaining MSU. Downloads only for the respective folder. There are some txt files that were empty and I added the links. Just extract inside the Packs folder. Enter the component folder and run the DownloadExtract.cmd script you need. Note: You do not need to run as admin.
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