dism.exe error on driver .cab installation

3

I'm trying to install .cab file on Windows 8.1. The file contains a driver and was downloaded from the Microsoft Update Catalog. File's path is e:\audio.cab and I use the following command (in elevated mode):

dism /Online /Add-Package /PackagePath:E:\audio.cab /NoRestart

and I get:

An error occured trying to open - audio.cab Error: 0x80070002
Error: 2
The system cannot find the file specified.

Why is that? The path seems valid.

alex

Posted 2014-05-10T15:12:55.960

Reputation: 550

what is this audio.cab? Where did you get it? – magicandre1981 – 2014-05-10T17:43:37.867

Answers

3

Microsoft Update Catalog

Apart from updates, the Microsoft Update Catalog also provides driver packaged in cabinet archives. Such drivers are meant to be installed manually after unpacking them, e.g using 7-Zip.


Manually installing a driver

  1. Download and extract the driver package.
  2. Open the Device Manager.
  3. Locate the device you want to update, right-click it, and select Update Driver Software from the context menu.
  4. Click Browse my computer for drivers software.
  5. Click the Browse button, and select the folder where you extracted the driver. Click OK when done.
  6. Click Next. The driver should start installing.

and31415

Posted 2014-05-10T15:12:55.960

Reputation: 13 382