> For the complete documentation index, see [llms.txt](https://www.osdeploy.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://www.osdeploy.com/core-components/winpe-drivers/hp.md).

# HP

HP provides a WinPE driver pack (SoftPaq) for injecting HP hardware drivers into WinPE boot images, enabling network and storage connectivity during OS deployment on HP devices.

| Property       | Value                                                                                         |
| -------------- | --------------------------------------------------------------------------------------------- |
| Publisher      | HP Inc.                                                                                       |
| Architecture   | amd64                                                                                         |
| Platform       | WinPE                                                                                         |
| Source         | [HP WinPE Driver Pack](https://ftp.ext.hp.com/pub/caps-softpaq/cmit/HP_WinPE_DriverPack.html) |
| Expand command | `"{FileName}" /s /e /f "{DestinationPath}"` (HP SoftPaq self-extractor)                       |

{% embed url="<https://ftp.ext.hp.com/pub/caps-softpaq/cmit/HP_WinPE_DriverPack.html>" %}

## Overview

HP distributes its WinPE driver pack as a SoftPaq self-extracting executable. The pack covers HP EliteBook, ProBook, ZBook, EliteDesk, ProDesk, and Z workstation hardware. OSDeploy downloads the SoftPaq, extracts it using the HP self-extractor switches, and injects the drivers at boot image build time.

## Download with OSDeploy

Use `Update-OSDeployCoreDrivers` to refresh the HP driver catalog and download the driver pack.

**Download HP packages:**

```powershell
Update-OSDeployCoreDrivers -Name 'hp'
```

**Download only (skip expansion):**

```powershell
Update-OSDeployCoreDrivers -Name 'hp' -DownloadOnly
```

**View downloaded HP driver folders in the library:**

```powershell
Get-OSDeployCoreDrivers -Architecture amd64
```

***

## Manual Download

Visit the HP WinPE Driver Pack page and download the latest SoftPaq:

<https://ftp.ext.hp.com/pub/caps-softpaq/cmit/HP_WinPE_DriverPack.html>

Extract the SoftPaq to your driver staging folder:

```powershell
$DestinationPath = 'C:\WinPEDrivers\HP'
New-Item -Path $DestinationPath -ItemType Directory -Force | Out-Null
& "$env:USERPROFILE\Downloads\HPWinPEDriverPack.exe" /s /e /f $DestinationPath
```

***

## Related

* [HP WinPE Driver Pack](https://ftp.ext.hp.com/pub/caps-softpaq/cmit/HP_WinPE_DriverPack.html)
* [Update-OSDeployCoreDrivers](https://docs.osdeploy.com)
* [Get-OSDeployCoreDrivers](https://docs.osdeploy.com)
* [WinPE Drivers overview](/core-components/winpe-drivers.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://www.osdeploy.com/core-components/winpe-drivers/hp.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
