Use install_wim_tweaker_NET4.6 to generate Packages.txt Code: @echo off pushd "%~dp0" install_wim_tweak_NET4.6 /o /l pause In the list search for: Microsoft-OneCore-TroubleShooting Microsoft-Windows-ContactSupport And fix a script to uninstall it like below example. Mine is x64 Home, yours full packages name should be different than mine. Code: @echo off pushd "%~dp0" install_wim_tweak_NET4.6 /o /c Microsoft-OneCore-TroubleShooting-Package~31bf3856ad364e35~amd64~it-IT~10.0.10240.16384 /r install_wim_tweak_NET4.6 /o /c Microsoft-OneCore-TroubleShooting-Package~31bf3856ad364e35~amd64~~10.0.10240.16384 /r install_wim_tweak_NET4.6 /o /c Microsoft-OneCore-TroubleShooting-WOW64-Package~31bf3856ad364e35~amd64~it-IT~10.0.10240.16384 /r install_wim_tweak_NET4.6 /o /c Microsoft-OneCore-TroubleShooting-WOW64-Package~31bf3856ad364e35~amd64~~10.0.10240.16384 /r install_wim_tweak_NET4.6 /o /c Microsoft-Windows-ContactSupport-Package~31bf3856ad364e35~amd64~en-US~10.0.10240.16384 /r install_wim_tweak_NET4.6 /o /c Microsoft-Windows-ContactSupport-Package~31bf3856ad364e35~amd64~~10.0.10240.16384 /r pause