Quick fix: Use the OEM’s built-in recovery USB creator (HP Recovery Manager, Lenovo OneKey Recovery, Dell SupportAssist OS Recovery) which includes manufacturer drivers and tools. For generic Windows 11 install USBs, slipstream OEM drivers via dism /image:<mount> /add-driver /driver:<path> /recurse.
You make a Windows 11 install USB via the Media Creation Tool. It works for clean installs but doesn’t include your laptop’s WiFi, touchpad, or custom function key drivers — you have to download them separately on first boot. A recovery USB with OEM drivers pre-included is more useful for emergency reinstalls.
Affects: Windows 11 OEM laptops.
Fix time: 60 minutes.
What OEM recovery USBs include
OEM recovery USBs typically have: Windows installer + manufacturer-signed drivers for all integrated hardware + utility partitions + factory restore image. Generic install USBs have only the OS.
Method 1: Use the OEM recovery USB creator
- Search for your laptop manufacturer’s recovery tool:
HP: HP Cloud Recovery Tool (free download from HP)
Lenovo: Lenovo USB Recovery Creator
Dell: Dell OS Recovery Tool
ASUS: MyASUS → Cloud Recovery
Acer: Acer Care Center → Recovery - Run the tool. Authenticate with your laptop’s service tag/serial number.
- The tool downloads a custom recovery image including your laptop’s drivers.
- Insert a USB stick (16+ GB) and let the tool write to it.
Method 2: Slipstream drivers into a Windows 11 install image
- Download Windows 11 ISO and mount it.
- Download all drivers for your laptop from the OEM site — extract to a folder.
- Create a working folder, copy install.wim from the ISO into it.
- Mount the WIM:
dism /mount-wim /wimfile:install.wim /index:1 /mountdir:C:\mount. - Add drivers:
dism /image:C:\mount /add-driver /driver:C:\drivers /recurse. - Unmount and commit:
dism /unmount-wim /mountdir:C:\mount /commit. - Create a new USB with the modified install.wim using Rufus or similar.
Method 3: Use a pre-installation environment with driver folder
- Use a WinPE-based recovery USB (Windows PE).
- Add a Drivers folder containing all your OEM drivers.
- During recovery, manually install drivers from the folder via Device Manager.
- This is more flexible but requires manual driver install after OS install.
Verification
- Boot from the USB on a fresh system. WiFi works during install.
- After install, all hardware in Device Manager has drivers (no yellow flags).
- Function keys (volume, brightness, etc.) work without further setup.
If none of these work
If your OEM doesn’t provide a recovery USB creator, slipstream is the path. For very old laptops, drivers may not be available for Windows 11 — download the latest matching drivers or use the OS’s generic drivers.
Bottom line: OEM recovery USB creators bundle drivers automatically. For generic USBs, slipstream drivers via DISM into the install image. Pick whichever you have access to.