[DISCUSSION] Windows 10 Final Build 19041>>>19045 (PC) [20H1>>>22H2 vb_release]

Discussion in 'Windows 10' started by Enthousiast, Dec 10, 2019.

  1. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,274
    94,763
    450
    #3881 Enthousiast, Aug 4, 2020
    Last edited: Aug 4, 2020
    (OP)
  2. donmiller

    donmiller MDL Addicted

    Jun 4, 2016
    721
    446
    30
    I'm running a clean install of 19041.423. This is what I get for Winver and About respectively:
    upload_2020-8-4_15-17-20.png

    upload_2020-8-4_15-17-36.png

    It's just a Version and 2004. I suspect it's not 2009 for 19042. It's probably 20H2.

    So why is this an issue for running Windows 10? I would think that there are a lot of other things to be more concerned about like the defrag bug or storage spaces or connectivity.
     
  3. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,274
    94,763
    450
    Please read the discussion in total, someone mentioned info missing, didn't mention initially he/she applied a reg mod to get the new start menu tiles from 20H2 on 20H1, which caused version info being removed from about.
     
  4. donmiller

    donmiller MDL Addicted

    Jun 4, 2016
    721
    446
    30
    I read that, and I'm aware of the reg changes not being mentioned, which is misleading. That's an issue. But I don't see how the way that version info is displayed, as a large issue, especially if it doesn't affect the functionality of Windows 10.
     
  5. Hasefroch

    Hasefroch MDL Senior Member

    Dec 24, 2018
    283
    170
    10
    And the Windows Experience Feature Pack? Until now it never was updated it seems
     
  6. Suzerain

    Suzerain MDL Junior Member

    Dec 13, 2012
    92
    11
    0
    If we have Build 19042.388, is that the latest update?
     
  7. donmiller

    donmiller MDL Addicted

    Jun 4, 2016
    721
    446
    30
    19041.423 and 19042.423 are the latest builds.
     
  8. EaglePC

    EaglePC MDL Expert

    Feb 13, 2012
    1,147
    471
    60
    19042.423 could be final on 20H2 doesn't matter if you install it you'll get updates and won't expire
     
  9. daniel_k

    daniel_k MDL Member

    Jan 21, 2019
    176
    370
    10
    I'm trying to disable automatic driver updates.
    I've tried the Group Policy and other registry settings found here and they didn't work.

    Does anyone have a solution that is proven to work with 20H1?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  10. Windows_Addict

    Windows_Addict MDL Expert

    Jul 19, 2018
    1,255
    3,455
    60
    https://forums.mydigitallife.net/threads/stopwinupdates.77026/
    This tool has an option to disable driver updates and last time I checked, it worked very fine, (no forced graphics driver updates even though the resolution was incorrect and no driver was installed).
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. steven4554

    steven4554 MDL Expert

    Jul 12, 2009
    1,429
    2,610
    60
    Code:
    Windows Registry Editor Version 5.00
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PolicyManager\current\device\Update]
    "ExcludeWUDriversInQualityUpdate"=dword:00000001
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PolicyManager\default\Update]
    "ExcludeWUDriversInQualityUpdate"=dword:00000001
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PolicyManager\default\Update\ExcludeWUDriversInQualityUpdate]
    "value"=dword:00000001
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings]
    "ExcludeWUDriversInQualityUpdate"=dword:00000001
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate]
    "ExcludeWUDriversInQualityUpdate"=dword:00000001
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. Windows_Addict

    Windows_Addict MDL Expert

    Jul 19, 2018
    1,255
    3,455
    60
    This doesn't work completely, windows treat normal driver updates and critical driver updates differently, e.g. when windows find that the graphic driver is not installed and display resolution is not correct, it will bypass these registry changes.

    The following are the excerpts from this tool https://forums.mydigitallife.net/threads/stopwinupdates.77026/ which disable driver updates completely.

    Disable driver updates:
    Code:
    Windows Registry Editor Version 5.00
    
    [HKEY_LOCAL_MACHINE\Software\Microsoft\PolicyManager\current\device\Update]
    "ExcludeWUDriversInQualityUpdate"=dword:00000001
    
    [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Device Metadata]
    "PreventDeviceMetadataFromNetwork"=dword:00000001
    
    [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\DriverSearching]
    "SearchOrderConfig"=dword:00000000
    
    [HKEY_LOCAL_MACHINE\Software\Microsoft\WindowsUpdate\UX\Settings]
    "ExcludeWUDriversInQualityUpdate"=dword:00000001
    
    [HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows\WindowsUpdate]
    "ExcludeWUDriversInQualityUpdate"=dword:00000001
    Enable driver updates:
    Code:
    Windows Registry Editor Version 5.00
    
    [HKEY_LOCAL_MACHINE\Software\Microsoft\PolicyManager\current\device\Update]
    "ExcludeWUDriversInQualityUpdate"=dword:00000000
    
    [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Device Metadata]
    "PreventDeviceMetadataFromNetwork"=dword:00000000
    
    [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\DriverSearching]
    "SearchOrderConfig"=dword:00000001
    
    [HKEY_LOCAL_MACHINE\Software\Microsoft\WindowsUpdate\UX\Settings]
    "ExcludeWUDriversInQualityUpdate"=dword:00000000
    
    [HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows\WindowsUpdate]
    "ExcludeWUDriversInQualityUpdate"=dword:00000000
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  13. daniel_k

    daniel_k MDL Member

    Jan 21, 2019
    176
    370
    10
    @steven4554 and @Windows_Addict,

    Thanks to you both.
    Those were the registry changes that I've already applied and didn't work.

    Worked fine on 1909, though.
    This really piss me off. :furious:

    Will try StopWinUpdates to see if it works.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. TairikuOkami

    TairikuOkami MDL Expert

    Mar 15, 2014
    1,172
    1,055
    60
    I have created shortcut to the old CP, it is simpler than "going around". I hope that MS will add the ability to customize the picture in the new CP, I like the old one more.
    Code:
    %windir%\system32\control.exe
     

    Attached Files:

  15. EaglePC

    EaglePC MDL Expert

    Feb 13, 2012
    1,147
    471
    60
    19041.xxx this Tuesday coming up , September will be 19041.xxx again then October will be 20/H2 build 19042.xxx