🖱️ HP G7/G8 Touchpad Issue in WinPE
On HP ProBook G7/G8, the touchpad may not work in WinPE.
HP confirmed this is related to a missing chipset driver:
👉 HP Forum Reference
🔧 Fix: Inject Drivers into WinPE
-
Mount the WinPE image:
dism /mount-wim /wimfile:"\\ServeurLDMS\ldmain\landesk\vboot\boot_x64.wim" /index:1 /mountdir:c:\mount -
Inject the touchpad drivers:
Dism /Image:C:\mount /Add-Driver /Driver:"c:\WinPEDriversPbTouchPadx64" /Recurse -
Commit and unmount:
Dism /unmount-wim /mountdir:c:\mount /commit
⚠️ Notes
- Make sure the drivers in
c:\WinPEDriversPbTouchPadx64are the correct ones for your HP model. - Always back up your original
boot.wimbefore modification.