Download HP Drivers with PowerShell with BIOS and Driver Management
Step-by-step guide to Download HP Drivers with PowerShell with BIOS and Driver Management, including configuration, deployment, troubleshooting and practical
Download HP Drivers Overview
You can use winget to install the HP Client Management Script Library.
winget install HP.HPCMSL

Download HP Drivers Overview
Alternatively, you can download the library from the HP Developers portal: HP Developers Portal | SoftPaq Management. Install “HP Client Management Script Library,” then run the command below.

Run: Get-HPDeviceProductID
Get-HPDeviceProductID returns the 4-character device Product ID.
Download HP Drivers Overview
This script uses the Client Management Script Library to download drivers with PowerShell.
Note: Get the Product ID with Get-HPDeviceProductID.
Examples
- HPLastDriverpack
Downloads the Driver Pack.
HPLastDriverpack -OS "Win10" -OSver "21h2" -Platform "8873" -DestinationFolder "c:drivers"
- HPLastBios
Downloads the latest available BIOS.
HPLastBios -OS "Win10" -OSver "21h2" -Platform "8873" -DestinationFolder "c:BIOS"
- HPLastDrivers
Downloads the latest drivers for a specific category.
HPLastDrivers -NameDriver "Hotkey" -OS "Win10" -OSver "21h2" -Platform "8873" -DestinationFolder "c:driversAdd"
- HPLastThunderbolt
Downloads the latest available Thunderbolt drivers.
HPLastThunderbolt -OS "Win10" -OSver "21h2" -Platform "8873" -DestinationFolder "c:driversadd"
Example workflow combining these functions:
HPLastDriverpack -OS "Win10" -OSver "21h2" -Platform "8873" -DestinationFolder "c:DriversHP_ZBookStudioG8Win10x64DriversPack"
HPLastBios -OS "Win10" -OSver "21h2" -Platform "8873" -DestinationFolder "c:DriversBIOSupdateHP_ZBookStudioG8BIOS"
DownloadScriptsBIOS -DestinationFolder "c:DriversBIOSupdateHP_ZBookStudioG8"
HPLastDrivers -NameDriver "WLAN" -OS "Win10" -OSver "21h2" -Platform "8873" -DestinationFolder "c:DriversHP_ZBookStudioG8Win10x64ADD"
HPLastThunderbolt -OS "Win10" -OSver "21h2" -Platform "8873" -DestinationFolder "c:DriversHP_ZBookStudioG8Win10x64ADD"
HPLastDrivers -NameDriver "Synaptics" -OS "Win10" -OSver "21h2" -Platform "8873" -DestinationFolder "c:DriversHP_ZBookStudioG8Win10x64ADD"
HPLastDrivers -NameDriver "NVIDIA" -OS "Win10" -OSver "21h2" -Platform "8873" -DestinationFolder "c:DriversHP_ZBookStudioG8Win10x64ADD"
HPLastDrivers -NameDriver "Hotkey" -OS "Win10" -OSver "21h2" -Platform "8873" -DestinationFolder "c:DriversHP_ZBookStudioG8Win10x64ADD"
HPGenerateDriverBat -DriverBatFolder "c:DriversHP_ZBookStudioG8Win10x64" -DriverCVAFolder "c:DriversHP_ZBookStudioG8Win10x64ADD" -PrefixeFolderComputerDrivers "c:pnpdriversADD"
DownloadScriptsDrivers -DestinationFolder "c:DriversHP_ZBookStudioG8Win10x64"
