When you connect a new device to your computer, laptop or tablet, Windows tries to automatically install a corresponding driver. The operation system further tries to update the driver version through the Windows Update. In most cases, this approach is optimal, since guarantees the installation of the latest driver versions that have been verified by Microsoft. However, in some cases the user deliberately uses the old driver versions and doesn’t want them to be updated automatically by Windows through Window Update.
Fortunately, you can prevent Windows 10 from automatically updating device drivers. In this article we will describe several ways we know on how to disable driver auto-update.
How to Prevent Windows 10 from Automatically Updating Specific Drivers?
You can stop automatic driver updates for a specific device in Windows 10. For example, you are using some kind of old (but stable) video card driver that stops working correctly after each automatic driver update. You want all computer drivers to be updated automatically, except for the driver for a specific device (your video card).
Microsoft suggests using a separate tool – wushowhide.diagcab (“Show or Hide Updates”), which allows you to hide specific updates or drivers in Windows 10.
- You can download the wushowhide.diagcab utility in the Microsoft Download Center (http://download.microsoft.com/download/f/2/2/f22d5fdb-59cd-4275-8c95-1be17bf70b21/wushowhide.diagcab);
- Run the wushowhide.diagcab utility and select the option “Hide Updates“;
- In the list of the available Windows updates and drivers, check the drivers for which you want to disable the auto update and click Next button;
- After that, the selected drivers will not be updated manually by Windows.
You can disable specific driver updates via the Group Policy. First of all, you need to determine the identifier of the device for which you want to disable the automatic driver updates.
- Open the device manager snap-in (devmgmt.msc). In the hardware list find the device you need and open its properties;
- Go to the Detail tab and select “Hardware IDs” from the drop-down list;
- Copy the values of the hardware identifiers associated with the device (in the format PCI\VEN_15AD&DEV_ ….) into the notepad.exe;
- In the Group Policy Editor console (gpedit.msc for local computer or gpmc.msc for domain workstations) go to the section Computer Configuration -> Administrative Templates -> System -> Device Installation -> Device Installation Restrictions. Enable the policy “Prevent installation of devices that match any of these device IDs”;
- Click the “Show” button in the policy settings and copy the graphic card IDs you received earlier into the table of values;
- Save the changes and update the group policies setting on the client with the command:
gpupdate /force
; - Now, if the computer receives and downloads driver updates for these devices through WindowsUpdate, an error message will appear during their automatic installation (The installation of this device is forbidden by system policy. Contact your system administrator).
Now you can not update the driver for this device manually. To update it, you will have to disable this group policy setting, or remove the hardware ID from the list.
Also you can enable this policy through the registry. To do this, run the registry editor (regedit.exe) and go to the registry key HKLM\SOFTWARE\Policies\Microsoft\Windows\DeviceInstall\Restrictions\DenyDeviceIDs. In this section, create string (REG_SZ) parameters with the names in order, starting with 1 and the hardware ID value in each parameter.
You can disable driver updates for specific device types (printers, sound cards, USB controllers, etc) using the policy “Prevent installation of devices using drivers that match these device setup classes”. To do this, you need to specify the device class GUID. For example, {4d36e972-e325-11ce-bfc1-08002be10318} is a class of network adapters, {4d36e979-e325-11ce-bfc1-08002be10318} and {4658ee7e-f050-11d1-b6bd-00c04fa372a7} – printers, etc.
How to Disable Driver Updates in Hardware Settings?
The easiest way to prevent Windows from automatic drivers update is to change the system settings on the Hardware tab. To do this:
- Press Win + X and click System;
- In the Related settings section click on the link System Info;
- In the left part of the window, click Advanced System Settings;
- In the next window, go to Hardware tab and click Device Installation Settings;
- In the Device Installation Settings window, check “No, let me choose what to do” and then “Never install driver software from Windows Update“;
- Save changes and restart your computer.

How to Stop Automatic Driver Updates Using Group Policies?
You can disable device driver updates in Windows 10 through Windows Update using Group Policies (it is also easier to configure settings on several computers in the AD domain at once via GPO or by copying the settings of local GPOs between computers in the workgroup using LGPO.exe):
- Press Win + R and type gpedit.msc in the next window (in Windows Home editions you can run the local group policy editor like this);
- In the Local Group Policy Editor, go to Computer Configuration -> Administrative Templates -> System ->Device Installation ->Device Installation Restrictions;
- Find the policy Prevent installation of devices not described by other policy setting;
- Enable the policy (“Enabled”) and save the changes;
- Then enable the policy “Specify search order for device driver source locations”. This policy is located in the section Computer Configuration -> Administrative Templates -> System -> Device Installation). Change the policy setting to “Do not search Windows Update”. This policy allows you to exclude the search for driver updates on Windows Update sites (when installing a driver for any Windows device, it tries to find a more suitable driver through the Windows Update service);
- Go to the section Computer Configuration -> Administrative Templates -> Windows Components -> Windows Update, find and enable the policy named “Do not include drivers with Windows Update”;This policy appeared in Windows 10 1607.
- You may also have to disable automatic Windows updates (you will have to manually download security updates from the Windows updates catalog and install MSU update files manually). To do this, enable the policy “Configure Automatic Update” in the section Computer Configuration -> Administrative Templates -> Windows Components -> Windows Update. Select item “2 — Notify for download and auto install”.
How to Disable Driver Updates in the Registry?
In Windows 10 Home editions with no Group Policy Editor, driver updates can be turned off using the Registry Editor.
- Open the Registry Editor (regedit.exe);
- Go to the registry key HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\DriverSearching;
- In the right panel, find SearchOrderConfig parameter and change its value to 0 (default value is 1, which means that the system allows driver updates);
- You also need to change the value of the ExcludeWUDriversInQualityUpdate parameter to 1 (in the registry key HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate);
- Save the changes.
You can apply this setting with the following commands:
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /v ExcludeWUDriversInQualityUpdate /t REG_DWORD /d 1 /f
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\DriverSearching" /v SearchOrderConfig /t REG_DWORD /d 0 /f
After the reboot, the automatic update of the drivers in the system will be blocked.
Several times I have seen that administrators disable driver updates after deploying a Windows 10 image and installing all the necessary drivers. To do this, you can disable the installation of the driver using the policy “Prevent installation of devices not described by other policy settings” (discussed above) or the command:
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DeviceInstall\Restrictions" /v DenyUnspecified /t REG_DWORD /d 1 /f
1 comment
All of this methods are just “TEMPORARY”. I found automatic driver update couldn’t be turned off and MS officially told THEY WILL NEVER CHANGE THIS BECAUSE OF SECURITY which is just lie.