Skip to content

Instantly share code, notes, and snippets.

@mark05e
Created August 13, 2021 20:05
Show Gist options
  • Save mark05e/660a1d5bc5d279c331bf3b0b81ce9bf4 to your computer and use it in GitHub Desktop.
Save mark05e/660a1d5bc5d279c331bf3b0b81ce9bf4 to your computer and use it in GitHub Desktop.
commands to remove internet explorer
# 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