Skip to content
Follow
Windows

How to Install CAB Files in Windows 11: Step-by-Step Guide

Richard
Written by
Richard
Feb 15, 2026 Updated Jul 12, 2026 2 min read
How to Install CAB Files in Windows 11
How to Install CAB Files in Windows 11

Encountering a CAB file on Windows 11 usually means dealing with a system update or hardware driver package. The installation process takes a few moments using built-in command-line tools.

⚡ Quick Answer

You install CAB files in Windows 11 using Command Prompt or PowerShell with administrator privileges. Open your chosen tool, then type `dism /Online /Add-Package /PackagePath:”FULL_PATH_TO_CAB_FILE”` for Command Prompt, or `Add-WindowsPackage -Online -PackagePath “FULL_PATH_TO_CAB_FILE”` for PowerShell.

What Is a CAB File?

A CAB (cabinet) file functions essentially as a compressed archive holding one or more system files. Windows and device manufacturers package system updates and drivers this way to reduce file sizes.

Think of it as a package with several components combined together to save storage space.

How to Install a CAB File in 🪟 Windows 11

Several methods exist for installing these packages.

1Using Command Prompt

Command Prompt provides a text-based interface for executing administrative tasks.

  1. Open Command Prompt as Administrator (this means running it with special permissions).
  2. Type the command below, but replace FULL_PATH_TO_CAB_FILE with the full location of your CAB file. For example, if your CAB file is in Downloads, it might look like this: C:UsersYourNameDownloadsfile.cab.
💻Code
dism /Online /Add-Package /PackagePath:"FULL_PATH_TO_CAB_FILE"

Example:

💻Code
dism /Online /Add-Package /PackagePath:"C:UsersRichardDownloadsWindows10.0-KB5018851-x64.cab"

Execution completion triggers a confirmation message in the console window.

2Using Windows PowerShell

PowerShell offers similar functionality with advanced scripting capabilities.

  1. Type this command, again replacing FULL_PATH_TO_CAB_FILE with your file’s path:
💻Code
Add-WindowsPackage -Online -PackagePath "FULL_PATH_TO_CAB_FILE"

Example:

💻Code
Add-WindowsPackage -Online -PackagePath "C:UsersRichardDownloadsWindows10.0-KB5018851-x64.cab"

The console displays a success notification upon completion.

3Extract and Install CAB Files Using File Explorer

Some archives contain hardware drivers (software enabling communication between Windows and hardware components). Extracting the archive contents allows administrators to install specific drivers manually.

  1. Open File Explorer (the folder icon on your taskbar).
  2. Find your CAB file and double-click it to open.
  3. Select all the files inside, right-click, and choose Extract All.
  4. Pick a folder where you want to save the extracted files, then click Extract.
Windows 11 extract cab file in File Explorer
Extracting CAB files in Windows 11 using File Explorer
Choose folder to extract CAB file
Choosing a folder to extract the CAB file

Extracted files install through Device Manager. Review the guide on How to install device drivers in Windows 11 for detailed instructions.

Summary

  • CAB files are compressed packages with updates or drivers for Windows.
  • You can install them using Command Prompt or PowerShell, by typing simple commands.
  • If you only want certain drivers, you can extract CAB files using File Explorer and install just what you need.
  • Helpful links and pictures make the process easier to follow.

Questions or feedback belong in the comment section below.

Was this guide helpful?

Tags: #Windows 11
Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

📚 Related Tutorials

How to Open Command Prompt at Boot in Windows 11
Windows How to Open Command Prompt at Boot in Windows 11
How to Change File Explorer Layout in Windows 11
Windows How to Change File Explorer Layout in Windows 11
How to Add or Remove Favorites in Windows 11 File Explorer
Windows How to Add or Remove Favorites in Windows 11 File Explorer
How to Remove Home Folder from Windows 11 File Explorer
Windows How to Remove Home Folder from Windows 11 File Explorer

No comments yet — be the first to share your thoughts!

Leave a Comment

Your email address will not be published. Required fields are marked *