<!–
–>
On Windows 10, you can install .cab files using the Deployment Image Servicing and Management (DISM) command-line tool available with Command Prompt, and here’s how. A .cab extension file refers to the cabinet archiving file format that offers an efficient way to package and compress multiple files in a file library.
Developers often use cabinet files to build their app installers, and Microsoft, for example, sometimes uses the format to distribute standalone updates for Windows 10 and other packages.
If you happen to have a Windows 10 update in a CAB format, you can use the DISM command-line tool to install packages on your device quickly.
In this guide, you’ll learn the steps to install a cabinet file on Windows 10.
Install CAB file using DISM command
To install a .cab file with Command Prompt, use these steps:
-
Open Start on Windows 10.
-
Search for Command Prompt, right-click the top result, and select the Run as administrator option.
-
Type the following command to install the CAB file and press Enter:
dism /Online /Add-Package /PackagePath:"PATH\TO\CAB"
For example, the following command installs the update KB4562830 on Windows 10:
dism /Online /Add-Package /PackagePath:"C:\Users\username\Downloads\windows10.0-kb4562830.cab"
Once you complete the steps, the package will install on your computer. If this was an update, you might also need to restart your computer to complete the installation.
Extract CAB file on Windows 10
Although you may have received a .cab file, it doesn’t mean you have to install it. Some developers may use the cabinet container as a compressed folder to distribute specific content.
To extract a .cab file, use these steps:
-
Open File Explorer.
-
Browse to the folder with the cabinet file.
-
Double-click the .cab file.
-
Select all the contents (Ctrl + A).
.Windows_Software_Technology-Big-343 { display:inline-block; width: 300px; height: 600px; } @media(min-width: 500px) { .Windows_Software_Technology-Big-343 { width: 300px; height: 600px;} } -
Right-click the selection and select the Extract option.
-
Select the folder destination to extract the files.
-
Click the Extract button.
After you complete the steps, you can use the files to install the application, driver, or update on the computer.
Install CAB file for driver update
If you’re installing a driver and the package fails to install using the DISM tool, you might be able to extract the contents of the CAB file to install the driver manually.
To update a driver using a .cab file on Windows 10, use these steps:
-
Open File Explorer.
-
Navigate to the folder with the achieve-file.
-
Double-click the CAB file to open it.
-
Select all the contents (Ctrl + A).
-
Right-click the selection and select the Extract option.
-
Select the folder destination to extract the files.
-
Click the Extract button.
-
Open Start.
-
Search for Device Manager and select the top result.
-
Right-click the device and select the Update driver option.
-
Click the Browse my computer for drivers option.
-
Click the Browse button.
-
Select the folder with extracted files from the CAB file.
-
Click the OK button.
-
Click the Next button.
-
Click the Close button.
After you complete the steps, Device Manager will detect and install the driver components to set up the device.
Post a Comment