How to disable Windows 10 driver updates

Discussion in 'Windows 10' started by The_Guardian, Jan 17, 2017.

  1. °ツ

    °ツ MDL Addicted

    Jun 8, 2014
    816
    1,122
    30
    Maybe this has been asked before but is Windows Firewall Control/TinyWall a solution to unwanted driver installs/updates?
    They are blocking the OS from connecting to Microsoft's servers to check for drivers unless white listed?
     
  2. lobo11

    lobo11 TOMAHAWK CHOP

    Feb 16, 2012
    6,584
    5,362
    210
    Install Windows Updates Mini Tool in Sig, set to notification mode, will play sound when you have new updates/ then you select which updates you want to install/hide,Will only install what you tell it to, Include drivers unchecked, Neat Tool. Make sure you uncleck Include drivers, nothing and I mean nothing gets installed through WU. unless you click install/hide.:p
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. Tiger-1

    Tiger-1 MDL Guru

    Oct 18, 2014
    7,897
    10,733
    240
    yep using WUMT by pf100 NO problems :worthy:
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. CHEF-KOCH

    CHEF-KOCH MDL Expert

    Jan 7, 2008
    1,192
    1,185
    60
    #104 CHEF-KOCH, Mar 20, 2017
    Last edited by a moderator: Apr 20, 2017
  5. theoctavist

    theoctavist MDL Junior Member

    Apr 16, 2014
    75
    10
    0
    The WUMT tool does not seem to be working for me. It keeps saying W10 version 1607 is downloaded and applied, but after restart, it loops, finds version 1607, says it needs to be installed, ad infinitum.

    any ideas?
     
  6. Super Spartan

    Super Spartan MDL Expert

    May 30, 2014
    1,709
    990
    60
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. lobo11

    lobo11 TOMAHAWK CHOP

    Feb 16, 2012
    6,584
    5,362
    210
    #107 lobo11, Apr 11, 2017
    Last edited: Apr 11, 2017
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  8. adric

    adric MDL Expert

    Jul 30, 2009
    1,251
    1,324
    60
    Does anyone have a registry solution to prevent driver updates through WU?
    I have tried so many different things and up to now everything has been ignored. I did a fresh install
    of LTSB and after searching for updates I am offered multiple driver updates (10) that I don*t want. I thought
    the new Windows Update group policy key entry "ExcludeWUDriversInQualityUpdate"=dword:00000001
    would take care of it, but no such luck.
     
  9. TairikuOkami

    TairikuOkami MDL Expert

    Mar 15, 2014
    1,172
    1,055
    60
    Try this:

    Code:
    reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Device Metadata" /v "PreventDeviceMetadataFromNetwork" /t REG_DWORD /d "1" /f
    reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\DriverSearching" /v "DontSearchWindowsUpdate" /t REG_DWORD /d "1" /f
    reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\DriverSearching" /v "SearchOrderConfig" /t REG_DWORD /d "0" /f
    reg add "HKLM\Software\Policies\Microsoft\Windows\WindowsUpdate" /v "ExcludeWUDriversInQualityUpdate" /t REG_DWORD /d "1" /f
    schtasks /Change /TN "Microsoft\Windows\Device Setup\Metadata Refresh" /Disable
     
  10. lobo11

    lobo11 TOMAHAWK CHOP

    Feb 16, 2012
    6,584
    5,362
    210
    #111 lobo11, May 30, 2017
    Last edited: May 30, 2017
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. adric

    adric MDL Expert

    Jul 30, 2009
    1,251
    1,324
    60
    Isn't the 1st and 2nd entries a policy setting? Should it not be:
    Code:
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\........