Avoid Blue Screen Errors by Disabling Windows Update from Installing Drivers

Avoid Blue Screen Errors by Disabling Windows Update from Installing Drivers

  • Hi there and welcome to PC Help Forum (PCHF), a more effective way to get the Tech Support you need!
    We have Experts in all areas of Tech, including Malware Removal, Crash Fixing and BSOD's , Microsoft Windows, Computer DIY and PC Hardware, Networking, Gaming, Tablets and iPads, General and Specific Software Support and so much more.

    Why not Click Here To Sign Up and start enjoying great FREE Tech Support.

    This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.
Welcome to our Community
Wanting to join the rest of our members? Feel free to sign up today.
Sign up

Avoid Blue Screen Errors by Disabling Windows Update from Installing Drivers



Blue screen errors, commonly known as Blue Screen of Death (BSOD), can be caused by various issues, including driver conflicts. One effective way to mitigate this risk is by preventing Windows Update from automatically installing drivers. This guide will walk you through the process of using a registry fix to achieve this.

Open the Registry Editor

  • Press Windowns key to open the start menu search box.
  • Type regedit and right click run as admin on regedit icon.
  • If prompted by User Account Control, click Yes to allow the Registry Editor to make changes to your device.

Backup Your Registry


Before making any changes, it’s crucial to back up your current registry settings:

  • In the Registry Editor, click on File and then select Export.
  • Choose a location to save the backup file, name it appropriately (e.g., “RegistryBackup”), and ensure that the Export range is set to “All”.
  • Click Save.
  • Save to your documents folder, or somewhere easy to remember.

Add Registry Entries



Exclude Drivers in Quality Updates

  • Navigate to: HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate
  • If the WindowsUpdate key does not exist, right-click on Microsoft, select New Key, and name it WindowsUpdate.
  • Right-click on an empty space in the right pane, select New ; DWORD (32-bit) Value, and name it ExcludeWUDriversInQualityUpdate.
  • Double-click on this new entry and set its value data to 1.

Configure Driver Search Order


  • Navigate to: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\DriverSearching
  • If the DriverSearching key does not exist, right-click on CurrentVersion, select New; Key, and name it DriverSearching.
  • Right-click on an empty space in the right pane, select New; DWORD (32-bit) Value, and name it SearchOrderConfig.
  • Double-click on this new entry and set its value data to 0.

Exclude Drivers from Windows Update Policy State


  • Navigate to: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsUpdate\UpdatePolicy\PolicyState
  • If the path does not exist, create each key manually by right-clicking on its parent key (WindowsUpdate, then create subkeys as needed).
  • Right-click on an empty space in the right pane, select New; DWORD (32-bit) Value, and name it ExcludeWUDrivers.
  • Double-click on this new entry and set its value data to 1.

Apply Changes

After adding these entries:
  • Close the Registry Editor.
  • Restart your computer for changes to take effect.

Add entries by opening elevated command prompt. Copy each command below one at a time, hit enter after each. Reboot the machine after.


reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /v ExcludeWUDriversInQualityUpdate /t REG_DWORD /d 1 /f

reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\DriverSearching" /v SearchOrderConfig /t REG_DWORD /d 0 /f

reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsUpdate\UpdatePolicy\PolicyState" /v ExcludeWUDrivers /t REG_DWORD /d 1 /f

To reverse these settings an allow windows updates to search for drivers.


reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /v ExcludeWUDriversInQualityUpdate /t REG_DWORD /d 0 /f

reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\DriverSearching" /v SearchOrderConfig /t REG_DWORD /d 1 /f

reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsUpdate\UpdatePolicy\PolicyState" /v ExcludeWUDrivers /t REG_DWORD /d 0 /f

By following these steps, you can prevent Windows Update from automatically installing drivers which may help reduce instances of blue screen errors due to driver conflicts. The risk is lower of bluescreen issues now that driver install by updates is disabled because it minimizes the chances of incompatible or faulty drivers being installed without your knowledge, ensuring that only stable and tested drivers are used on your system.

Author
Malnutrition
Views
41
First release
Last update

Ratings

0.00 star(s) 0 ratings

More resources from Malnutrition