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

# Intel Ethernet

Intel provides a complete Ethernet adapter driver pack for injecting Intel NIC drivers into WinPE boot images, enabling network connectivity on systems with Intel Ethernet controllers.

| Property       | Value                                                                                                                                                  |
| -------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Publisher      | Intel Corporation                                                                                                                                      |
| Architecture   | amd64                                                                                                                                                  |
| Platform       | WinPE                                                                                                                                                  |
| Source         | [Intel Ethernet Adapter Complete Driver Pack](https://www.intel.com/content/www/us/en/download/15084/intel-ethernet-adapter-complete-driver-pack.html) |
| Expand command | `Expand-Archive` (ZIP archive)                                                                                                                         |

{% embed url="<https://www.intel.com/content/www/us/en/download/15084/intel-ethernet-adapter-complete-driver-pack.html>" %}

## Overview

The Intel Ethernet Adapter Complete Driver Pack is a ZIP archive containing `.inf`-based drivers for all supported Intel Ethernet controllers. OSDeploy downloads the pack, extracts it using `Expand-Archive`, and injects the relevant drivers into the WinPE image at build time. This pack is most useful when deploying to systems with Intel NICs that are not covered by the Dell or HP vendor packs.

## Download with OSDeploy

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

**Download Intel Ethernet packages:**

```powershell
Update-OSDeployCoreDrivers -Name 'intel-ethernet'
```

**Download only (skip expansion):**

```powershell
Update-OSDeployCoreDrivers -Name 'intel-ethernet' -DownloadOnly
```

**View downloaded Intel Ethernet driver folders in the library:**

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

***

## Manual Download

Visit the Intel download page and download the latest complete driver pack ZIP:

<https://www.intel.com/content/www/us/en/download/15084/intel-ethernet-adapter-complete-driver-pack.html>

Expand the ZIP to your driver staging folder:

```powershell
$DestinationPath = 'C:\WinPEDrivers\IntelEthernet'
Expand-Archive -Path "$env:USERPROFILE\Downloads\Intel-EthernetDriverPack.zip" -DestinationPath $DestinationPath
```

***

## Related

* [Intel Ethernet Adapter Complete Driver Pack](https://www.intel.com/content/www/us/en/download/15084/intel-ethernet-adapter-complete-driver-pack.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/intel-ethernet.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.
