Windows Updates

Update device drivers safely

Practical Windows guide: update device drivers safely without the usual guesswork.

10 min read Beginner Updated 9 Jun 2026

Step-by-step guide

Work through each section in order. Stop when your issue is resolved — you do not need every step for every situation.

Warning

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

  1. Open Settings → Windows Update → Advanced options → Optional updates.
  2. Expand Driver updates and install only drivers you recognise (GPU, chipset, touchpad from known vendors).
  3. Reboot after driver installs.

2) Use Device Manager

  1. Press Win + XDevice Manager.
  2. Right-click a device with a yellow warning → Update driverSearch automatically for drivers.
  3. If Windows finds nothing, visit the PC, laptop, or motherboard manufacturer support page and download the exact model driver.

3) GPU and chipset priority

  1. NVIDIA: GeForce Experience or drivers from nvidia.com. AMD: amd.com Adrenalin. Intel: Intel Driver & Support Assistant.
  2. Install chipset drivers from Dell, HP, Lenovo, or motherboard vendor before random peripheral drivers.

4) Roll back a bad driver

  1. Device Manager → device → Properties → Driver → Roll Back Driver if the button is enabled.
  2. 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)

  1. System → About → Advanced system settings → Hardware → Device Installation Settings → No.
  2. 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

  1. 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.

  1. Chipset and storage drivers from optional updates are often worth installing on laptops.
  2. Skip unknown “Intel – System” duplicates if Device Manager shows no warnings.
  3. 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.

  1. Reboot once after changes that affect services, drivers, or firmware.
  2. Confirm the original problem is resolved under normal daily use, not only immediately after the fix.
  3. Note date, Windows version (Settings → System → About), and what changed in your personal runbook for next time.

Related guides

device drivers safely update windows