Created
August 13, 2021 20:05
-
-
Save mark05e/660a1d5bc5d279c331bf3b0b81ce9bf4 to your computer and use it in GitHub Desktop.
commands to remove internet explorer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://docs.microsoft.com/en-us/troubleshoot/browsers/disable-internet-explorer-windows | |
@rem DISM /Online /Get-Capabilities | |
@rem Dism /online /Get-Features | |
DISM /Online /Get-CapabilityInfo /CapabilityName:Browser.InternetExplorer~~~~0.0.11.0 | |
Dism /online /Get-FeatureInfo /FeatureName:Internet-Explorer-Optional-amd64 | |
dism /online /Remove-Capability /CapabilityName:Browser.InternetExplorer~~~~0.0.11.0 | |
dism /online /Disable-Feature /FeatureName:Internet-Explorer-Optional-amd64 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment