Third-party driver updaters often install wrong or unsigned drivers. Prefer Windows Update and the hardware vendor over random download tools.
What you will achieve
Update drivers through Windows Update, Device Manager, and OEM sites — in that order — without breaking system stability.
1) Start with Windows Update
- Open Settings → Windows Update → Advanced options → Optional updates.
- Expand Driver updates and install only drivers you recognise (GPU, chipset, touchpad from known vendors).
- Reboot after driver installs.
2) Use Device Manager
- Press Win + X → Device Manager.
- Right-click a device with a yellow warning → Update driver → Search automatically for drivers.
- If Windows finds nothing, visit the PC, laptop, or motherboard manufacturer support page and download the exact model driver.
3) GPU and chipset priority
- NVIDIA: GeForce Experience or drivers from nvidia.com. AMD: amd.com Adrenalin. Intel: Intel Driver & Support Assistant.
- Install chipset drivers from Dell, HP, Lenovo, or motherboard vendor before random peripheral drivers.
4) Roll back a bad driver
- Device Manager → device → Properties → Driver → Roll Back Driver if the button is enabled.
- Or uninstall the device, tick Attempt to remove the driver for this device, reboot, and let Windows reinstall the inbox driver.
5) Export driver list before major changes
driverquery /v /fo csv > "$env:USERPROFILE\Desktop\drivers-before.csv"
6) Block automatic driver offers (Pro)
- System → About → Advanced system settings → Hardware → Device Installation Settings → No.
- Or Group Policy: Prevent installation of devices that match these device IDs for known bad driver versions.
7) Verify driver signature
Get-WindowsDriver -Online -All | Where-Object {$_.ProviderName -match "Intel|AMD|NVIDIA"} | Select-Object Driver, ProviderName, Date
8) Safe Mode driver test
- Boot Safe Mode with networking — if issue disappears, suspect third-party driver or filter driver stack.
9) Optional updates vs inbox drivers
Windows Update optional drivers are OEM-submitted packages Microsoft has not made mandatory. Treat them like manual vendor downloads — read release notes.
- Chipset and storage drivers from optional updates are often worth installing on laptops.
- Skip unknown “Intel – System” duplicates if Device Manager shows no warnings.
- After major Windows upgrade, revisit optional updates once — new inbox drivers may appear.
Verification checklist
Open Device Manager after updates — zero yellow icons on network, storage, and display. Run one stress test (game, video call, or large file copy) before declaring driver day complete.
- Reboot once after changes that affect services, drivers, or firmware.
- Confirm the original problem is resolved under normal daily use, not only immediately after the fix.
- Note date, Windows version (Settings → System → About), and what changed in your personal runbook for next time.