Page 1 of 1

[SOLVED] Creating Dell driver package (deploying .cab via package)

Published: October 1, 2021 - 2:03 PM
by Guillaume_ccfd
Hello everyone,

I'd like to create packages containing groups of drivers. I have a .cab file for each PC model, but I'm stuck on how to create the package to deploy and install these .cab files on the machines.

I don't want these updates to cause users to restart their workstations, and the goal is to force updates for all components (audio, video, touchpad, BIOS, etc.).

Do you have any ideas or suggestions?

Thank you very much!

Re: Creating a Dell driver package (deploying .cab via package)

Published: October 8, 2021 - 1:47 PM
by olaplanche
Good morning,

For the DELL BIOS file of the type "OptiPlex_3080_2.1.1.exe":

Code: Select all

# -*- coding: utf-8 -*-
from setuphelpers import *

uninstallkey = []

def install():
    print('installing wapt-biosdell3080maj')
    run_notfatal(r'"OptiPlex_3080_2.1.1.exe" /p=biospassword /s /r')

Re: Creating a Dell driver package (deploying .cab via package)

Published: October 8, 2021 - 4:03 PM
by florentR2
If it's Dell or HP, they have their own tools to automate this:
DellCommandUpdate and HP Support Assistant.
We deploy and configure DellCommandUpdate with WAPT, and it works well.
You just need to get to grips with the tool to define its configuration.

Re: Creating a Dell driver package (deploying .cab via package)

Published: October 8, 2021 - 4:14 PM
by olaplanche
Follow-up question: So, does the dellcommandupdate agent download the drivers/BIOS from the web or from a local store?

Re: Creating a Dell driver package (deploying .cab via package)

Published: October 10, 2021 - 3:35 PM
by florentR2
He downloads them from Dell's repositories.
It remains to be seen if Dell allows for a local mirror.

Re: [SOLVED] Creating Dell driver package (deploying .cab via package)

Published: October 28, 2021 - 11:32 AM
by Guillaume_ccfd
Hello,

the support assistant requires human intervention to update drivers.

We want to install the correct drivers on all our workstations because we're experiencing several audio driver issues (microphone recognition problems when a headset jack is plugged in).

Dell provided us with a package containing all the drivers (BIOS, audio, video, etc.), however, it's a .cab file and I'm having trouble deploying it (knowing that I have one .cab file per workstation model).

Re: [SOLVED] Creating Dell driver package (deploying .cab via package)

Published: October 28, 2021 - 3:58 PM
by florentR2
Hello,
it would be simpler to use DellCommandUpdate which allows you to automate these updates.