> 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/dell.md).

# Dell

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

| Property       | Value                                                                                                |
| -------------- | ---------------------------------------------------------------------------------------------------- |
| Publisher      | Dell Technologies                                                                                    |
| Architecture   | amd64                                                                                                |
| Platform       | WinPE                                                                                                |
| Source         | [Dell WinPE 11 Driver Pack](https://www.dell.com/support/kbdoc/en-us/000211541/winpe-11-driver-pack) |
| Expand command | `expand.exe "{FileName}" -F:* "{DestinationPath}"`                                                   |

{% embed url="<https://www.dell.com/support/kbdoc/en-us/000211541/winpe-11-driver-pack>" %}

## Overview

The Dell WinPE 11 driver pack is a self-contained cabinet (`.cab`) archive that contains network, storage, and input drivers for the full range of Dell client and commercial devices. OSDeploy downloads the pack, expands it into the OSDeployCore repository using `expand.exe`, and injects the drivers at boot image build time.

## Download with OSDeploy

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

**Download Dell packages:**

```powershell
Update-OSDeployCoreDrivers -Name 'dell'
```

**Download only (skip expansion):**

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

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

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

***

## Manual Download

Visit the Dell WinPE 11 Driver Pack support page and download the latest `.cab` file:

<https://www.dell.com/support/kbdoc/en-us/000211541/winpe-11-driver-pack>

Expand the downloaded cab to your driver staging folder:

```powershell
$DestinationPath = 'C:\WinPEDrivers\Dell'
New-Item -Path $DestinationPath -ItemType Directory -Force | Out-Null
expand.exe "$env:USERPROFILE\Downloads\Dell-WinPE-Drivers.cab" -F:* $DestinationPath
```

***

## Related

* [Dell WinPE 11 Driver Pack](https://www.dell.com/support/kbdoc/en-us/000211541/winpe-11-driver-pack)
* [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/dell.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.
