> 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-wireless.md).

# Intel Wireless

Intel provides an IT administrator wireless driver pack for injecting Intel Wi-Fi drivers into WinPE boot images, enabling wireless connectivity on systems with Intel wireless adapters.

| Property       | Value                                                                                                                                                                                                        |
| -------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Publisher      | Intel Corporation                                                                                                                                                                                            |
| Architecture   | amd64                                                                                                                                                                                                        |
| Platform       | WinPE (WinRE-based images)                                                                                                                                                                                   |
| Source         | [Intel ProSet/Wireless Software and Wi-Fi Drivers for IT Administrators](https://www.intel.com/content/www/us/en/download/18231/intel-proset-wireless-software-and-wi-fi-drivers-for-it-administrators.html) |
| Expand command | `Expand-Archive` (ZIP archive)                                                                                                                                                                               |

{% embed url="<https://www.intel.com/content/www/us/en/download/18231/intel-proset-wireless-software-and-wi-fi-drivers-for-it-administrators.html>" %}

## Overview

The Intel ProSet/Wireless IT administrator pack is a ZIP archive containing `.inf`-based drivers for Intel Wi-Fi 6, Wi-Fi 6E, and Wi-Fi 7 adapters. OSDeploy downloads the pack, extracts it using `Expand-Archive`, and injects drivers into the WinPE image at build time.

{% hint style="warning" %}
WiFi drivers are only needed for **WinRE-based boot images**. ADK-generated WinPE does not support wireless hardware. When no imported OS sources are present, `Update-OSDeployCoreDrivers` excludes Wi-Fi packages automatically.
{% endhint %}

## Download with OSDeploy

Use `Update-OSDeployCoreDrivers` to refresh the Intel Wireless catalog and download the driver pack. Pass `-SkipWifiDrivers` to exclude wireless packages when building a WinPE-only image.

**Download Intel Wireless packages:**

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

**Download only (skip expansion):**

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

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

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

**Exclude Wi-Fi drivers when building a WinPE-only image:**

```powershell
Update-OSDeployCoreDrivers -SkipWifiDrivers
```

***

## Manual Download

Visit the Intel download page and download the latest IT administrator wireless driver pack ZIP:

<https://www.intel.com/content/www/us/en/download/18231/intel-proset-wireless-software-and-wi-fi-drivers-for-it-administrators.html>

Expand the ZIP to your driver staging folder:

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

***

## Related

* [Intel ProSet/Wireless Software for IT Administrators](https://www.intel.com/content/www/us/en/download/18231/intel-proset-wireless-software-and-wi-fi-drivers-for-it-administrators.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-wireless.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.
