Does anyone know what detail components that WSA needs? WSA can't start when I remove some components. Windows Subsystem for Android Update:after test many times,don't remove the components below: System - Projected File System(ProjFS) System Apps - Parental Controls @MSMG Can you note it under this two components? Thank you!
For WSA, do not delete Remove System Apps - Parental Controls WSA also uses some of the functions of Hyper-V Copy the file to the folder corresponding to the version, example Toolkit_v13.6\Custom\Files\w10\x64\Windows\Setup\Scripts\SetupComplete.cmd Complete the integration [2] Integrate [5] Windows Custom Features - [E] Custom System Files Do the same with firstlogon.cmd
it seems after win10 build 1809, any package removal with dism breaks installing updates. i normally use the server builds as it allows to remove more packages via dism. server 2019 was the last build where dism package removal worked without any issues when installing cumulative/security updates. with server 2022, dism package removal breaks updates due to missing files
i find some newer win11 22h2 version needed to be compatiple with toolkit 13.7 or newer version.i will wait for them patiently and hope the next one is better
Does anyone know how to remove the following 2 components with DISM commands: 1. New BingNews that Microsoft places into "Windows\InboxApps" directory starting with build 22631.2787 (or 22631.2792) 2. Sleep Study
is this a privisioned app package? "Microsoft.BingSearch_8wekyb3d8bbwe". why not use dism tools? gui to dism which can be found on this site?
No, it is not and DISM tools do not see it as a provisioned package. It is the new type of MSIX bloatware now placed in "Windows\InboxApps" along with other MSIX packages, such as FlipGrid PWA and Outlook PWA.
echo. echo.=============================================================================== echo.^| Index ^| Arch ^| Name echo.=============================================================================== for /f "tokens=2 delims=: " %%a in ('dism /Get-WimInfo /WimFile:"C:\Users\Nico\Desktop\WIMToolkit\DVD\sources\install.wim" ^| findstr Index') do ( for /f "tokens=2 delims=: " %%b in ('dism /Get-WimInfo /WimFile:"C:\Users\Nico\Desktop\WIMToolkit\DVD\sources\install.wim" /Index:%%a ^| findstr /i Architecture') do ( for /f "tokens=* delims=:" %%c in ('dism /Get-WimInfo /WimFile:"C:\Users\Nico\Desktop\WIMToolkit\DVD\sources\install.wim" /Index:%%a ^| findstr /i Name') do ( set "Name=%%c" if %%a equ 1 echo.^| %%a ^| %%b ^| !Name! if %%a gtr 1 if %%a leq 9 echo.^| %%a ^| %%b ^| !Name! if %%a gtr 9 echo.^| %%a ^| %%b ^| !Name! ) ) ) set /p index="Enter an index number: " not work on Windows11 but on windows 10 yes...why? How I can correct?
hi, @MSMG would it be possible to make component removal more granuler? regarding the folowing app? MicrosoftWindows.Client.CBS_cw5n1h2txyewy it would be great if the folowing components could be removed individually? if not all of them then the folowing ones. WindowsBackupClient.exe installed after the very latest cu was installed. TextInputHost.exe ScreenClippingHost.exe IrisServiceProduct.exe the rest are what i've found while browsing the fs. RulesEngineProduct.exe AccountsServiceProduct.exe thank you for your considderation, the main app is the windows backup client. Majid
Code: set "ImageInfo=%Temp%\ImageInfo.txt" echo. ( echo.=============================================================================== echo.^| Index ^| Arch ^| Name echo.=============================================================================== )>%ImageInfo% for /f "tokens=2 delims=: " %%a in ('dism /English /Get-WimInfo /WimFile:"C:\Users\Nico\Desktop\WIMToolkit\DVD\sources\install.wim" ^| findstr /i "Index"') do ( for /f "tokens=2 delims=: " %%b in ('dism /English /Get-WimInfo /WimFile:"C:\Users\Nico\Desktop\WIMToolkit\DVD\sources\install.wim" /Index:%%a ^| findstr /i "Architecture"') do ( for /f "tokens=* delims=:" %%c in ('dism /English /Get-WimInfo /WimFile:"C:\Users\Nico\Desktop\WIMToolkit\DVD\sources\install.wim" /Index:%%a ^| findstr /i "Name"') do ( if "%%~b" neq "amd64" if "%%~b" neq "arm64" ( if %%a leq 9 echo.^| %%a ^| %%b ^| %%c if %%a gtr 9 if %%a leq 99 echo.^| %%a ^| %%b ^| %%c if %%a gtr 99 echo.^| %%a ^| %%b ^| %%c ) if "%%~b" neq "x86" if "%%~b" neq "x64" if "%%~b" neq "arm" ( if %%a leq 9 echo.^| %%a ^| %%b ^| %%c if %%a gtr 9 if %%a leq 99 echo.^| %%a ^| %%b ^| %%c if %%a gtr 99 echo.^| %%a ^| %%b ^| %%c ) )>>%ImageInfo% ) ) type "%ImageInfo%" As you can see I have added /English. This will work in wherever UIlanguage system you use.
What is the name of the software to download Windows iso? I want to download 23H2 V2, the first version of V2, the last one on the Microsoft website seemed to have some lag in some online games.
What do tweaks regarding windows defender, smart screen and windows update In "Customize" > "Apply Tweaks" do if you remove these packages via "Remove Windows Components"? Do those tweaks become redundant? Another thing I have a problem with is "Microsoft-Windows-LanguageFeatures-Basic-en-us-Package" apparently being a permanent package? Removing it via "DISM Method" gives me an error, even though it's an "OnDemand Pack" and not even a Language Pack. I don't think it was like that in much older versions of the toolkit.