Forum Discussion
Eid-85
Oct 17, 2021Copper Contributor
Uninstalling HEVC Video Extensions from Windows 11
Hello I have installed HEVC Video Extensions in my Windows 11 device and having some problem with Netflix and I want to uninstall the HEVC Video Extensions but the issue is I can't find it in con...
turboc31
Copper Contributor
Microsoft store packages are usually APPX format installations (HEVC Video Extensions is installed as APPX package)
You will need to use PowerShell with administrative privileges.
- Execute following command in powershell, it will list all the APPX packages installed on the system.
Get-AppxPackage | select Name,PackageFullName,NonRemovable
- Go thru the list and find the HEVC package in the list, in my case it was named Microsoft.HEVCVideoExtension_1.0.42701.0_x64__8wekyb3d8bbwe
- Next execute following command to uninstall this package:
Remove-AppxPackage <package name>
e.g. Microsoft.HEVCVideoExtension_1.0.42701.0_x86__8wekyb3d8bbwe
this will uninstall the package.
Now you can again go to microsoft store and install the package.
You will need to use PowerShell with administrative privileges.
- Execute following command in powershell, it will list all the APPX packages installed on the system.
Get-AppxPackage | select Name,PackageFullName,NonRemovable
- Go thru the list and find the HEVC package in the list, in my case it was named Microsoft.HEVCVideoExtension_1.0.42701.0_x64__8wekyb3d8bbwe
- Next execute following command to uninstall this package:
Remove-AppxPackage <package name>
e.g. Microsoft.HEVCVideoExtension_1.0.42701.0_x86__8wekyb3d8bbwe
this will uninstall the package.
Now you can again go to microsoft store and install the package.