How to Install HEVC Video Extensions using PowerShell

Need HEVC (H.265) video support on Windows? Use these proven PowerShell commands to install HEVC Video Extensions when other methods fail.

 

Install HEVC Video Extensions using PowerShell



This guide serves as an updated follow-up to outdated installation methods that rely on winget commands. The methods below actually work when winget fails.


HEVC Video Extensions enable Windows to play High Efficiency Video Coding files in Windows Media Player, Movies & TV app, and other media applications.

 

No package found

Why This Guide Exists

Previous installation guide relied on winget commands like:

winget install --id=Microsoft.HEVCVideoExtension


that frequently return "No package found matching input criteria" errors.


This PowerShell approach bypasses these package manager limitations entirely.

Prerequisites

  • Windows 10 version 1809 or Windows 11.
  • Administrator privileges on PowerShell.
  • Active internet connection.
     
Terminal (Admin)
You can also type: PowerShell on search box.


Method 1: Register Existing Package (Primary Method)

Right-click Start button → select "Windows PowerShell (Admin)" or "Terminal (Admin)" and run:

Add-AppxPackage -RegisterByFamilyName -MainPackage Microsoft.HEVCVideoExtension_8wekyb3d8bbwe


This command registers the HEVC extension that's already present in Windows but not activated.


Method 2: Re-register All Users (Alternative)

If Method 1 doesn't work, try this command:

Get-AppxPackage -allusers Microsoft.HEVCVideoExtension | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}


This re-registers the extension for all user accounts on the system.


Method 3: Manual Download and Install (Advanced)

If Methods 1 and 2 fail completely, follow this detailed guide to download HEVC Video Extensions manually.

This method involves downloading the actual installation package from Microsoft Store using a third-party link generator, then installing it with PowerShell.

Once you have the downloaded .appxbundle file, install it using:

Add-AppxPackage -Path "C:\path\to\your\downloaded\file.appxbundle"


Replace the path with your actual download location.
 

HEVC Video Extensions Installed

Verify Installation Success

Check installation with this command:

Get-AppxPackage | Where-Object {$_.Name -like "*HEVC*"}


Successful installation shows:

  • Name: Microsoft.HEVCVideoExtension
  • Status: Ok
  • Version: 2.4.13.0 or newer
  • Publisher: Microsoft Corporation


Troubleshooting Guide

Command fails with "not found" error:

In order to see all packages, run:

Get-AppxPackage -AllUsers | Select Name, PackageFullName


Update Windows to latest version first.
 

"Access denied" error:

Confirm PowerShell runs as Administrator.

Check execution policy:

Set-ExecutionPolicy RemoteSigned -Scope CurrentUser

 

Installation succeeds but videos won't play:

  • Restart Windows completely.
  • Update graphics drivers through Device Manager.
  • Test with sample HEVC file in Windows Media Player.


Why These Methods Work Better

Unlike unreliable winget package managers, these PowerShell commands directly interact with Windows' built-in app registration system.

The HEVC extension files are often already present in Windows but need proper registration to function - eliminating dependency on external package repositories.
 

Test HEVC Playbook

After successful installation:

  1. Open any H.265/HEVC video file in Windows Media Player.
  2. Play 4K HEVC content in Movies & TV app.


Ready to enable HEVC video support on Windows? Start with Method 1's PowerShell registration command - it works on most systems and activates H.265 playback instantly.

If that fails, try Method 2's alternative PowerShell approach, or use Method 3's manual download method as your final option.

These proven command-line methods bypass unreliable package managers and get HEVC working when other guides fail.

Reviews & Comments
Be the First to Write a COMMENT!
Verification Code
Click the image or refresh button to get a new code.
Quick heads up: Reviews & comments get a fast check before posting - no spam allowed.