[DISCUSSION] Windows 11 Official Build 22000.xxx (PC) [co_release]

Discussion in 'Windows 11' started by Enthousiast, Jun 28, 2021.

  1. itsmemario1

    itsmemario1 MDL Expert

    Sep 10, 2012
    1,085
    295
    60
    How comes SMB 1.0 is auto activated in Windows 11 ?

    Wasnt it disabled for security reasons in 10 ?
     
  2. boe323

    boe323 MDL Expert

    Jul 19, 2011
    1,780
    540
    60
    right click on apps and choose app settings for the second time results in continuous app settings page crash. First attempt works flawlessly. Works fine if app settings panel is already open
     
  3. Odev

    Odev MDL Junior Member

    Feb 20, 2017
    94
    43
    0
    They'll set dark mode as default on all commercial SKU's. Really unusual for an unfinished feature, that still need to be extended on some system parts.
     
  4. Odev

    Odev MDL Junior Member

    Feb 20, 2017
    94
    43
    0
    Bet there is also a chance of see another WinPE UI, on the ISO of future stable build.
     
  5. amincom

    amincom MDL Junior Member

    Feb 4, 2014
    50
    6
    0
    For enterprise & education editions only but home & pro will be light theme as usual.
     
  6. Carlos Detweiller

    Carlos Detweiller Emperor of Ice-Cream

    Dec 21, 2012
    6,767
    7,702
    210
    Pff, classic. You can still get menus in Win11.

    win11menus.jpg
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. Odev

    Odev MDL Junior Member

    Feb 20, 2017
    94
    43
    0
    Oh...ok, so just for some. But the above question remains.
     
  8. Odev

    Odev MDL Junior Member

    Feb 20, 2017
    94
    43
    0
    They'll never get rid of this stuff I guess. 6 years have passed from windows 10, and are not few.
     
  9. PolidelticusFire

    PolidelticusFire MDL Addicted

    May 7, 2020
    995
    389
    30
    Windows 11 22H2 SP42.2 Beta 51 Release 89 Upate 56787.71.104 LMFAO
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  10. jeff69dini

    jeff69dini MDL Expert

    Nov 22, 2008
    1,023
    236
    60
    21996 seems better for me than any other build past this point, weird, lol
     
  11. amincom

    amincom MDL Junior Member

    Feb 4, 2014
    50
    6
    0
    19996 is just windows 10 plus new start menu and new icons
     
  12. jsmith242

    jsmith242 MDL Novice

    Feb 7, 2014
    30
    47
    0
    Does "ExcludeWUDriversInQualityUpdate" DWORD = 1 @ HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate work to prevent Windows from overwriting the drivers?
     
  13. freddie-o

    freddie-o MDL Expert

    Jul 29, 2009
    1,566
    2,605
    60
    #2213 freddie-o, Jul 20, 2021
    Last edited: Jul 20, 2021
    Edited:

    This works for me

    Code:
    Windows Registry Editor Version 5.00
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Device Metadata]
    "PreventDeviceMetadataFromNetwork"=dword:00000001
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\DriverSearching]
    "SearchOrderConfig"=dword:00000000
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate]
    "ExcludeWUDriversInQualityUpdate"=dword:00000001
    
    
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. d5aqoëp

    d5aqoëp MDL Addicted

    Jan 19, 2017
    825
    614
    30
    I use wumt.exe to block driver updates.
     
  15. freddie-o

    freddie-o MDL Expert

    Jul 29, 2009
    1,566
    2,605
    60
    #2216 freddie-o, Jul 20, 2021
    Last edited: Jul 20, 2021
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  16. freddie-o

    freddie-o MDL Expert

    Jul 29, 2009
    1,566
    2,605
    60
    #2217 freddie-o, Jul 20, 2021
    Last edited: Aug 10, 2021
    Edited:

    "offlineServicing" -- I use dism to add my drivers
    Code:
    dism /scratchdir:temp /image:mount /Add-Driver /Driver:drivers /recurse
    
    


    and control/configure Windows Update with my reg tweaks
    Code:
    reg load HKLM\SOFTHIVE mount\Windows\System32\config\SOFTWARE
    reg add "HKLM\SOFTHIVE\Policies\Microsoft\MRT" /v "DontReportInfectionInformation" /t REG_DWORD /d "1" /f
    reg add "HKLM\SOFTHIVE\Policies\Microsoft\MRT" /v "DontOfferThroughWUAU" /t REG_DWORD /d "1" /f
    reg delete "HKLM\SOFTHIVE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\MRT.exe" /f
    reg add "HKLM\SOFTHIVE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "NoAutoUpdate" /t REG_DWORD /d "1" /f
    reg add "HKLM\SOFTHIVE\Policies\Microsoft\Windows\WindowsUpdate" /v "ExcludeWUDriversInQualityUpdate" /t REG_DWORD /d "1" /f
    reg add "HKLM\SOFTHIVE\Policies\Microsoft\Windows\DriverSearching" /v "SearchOrderConfig" /t REG_DWORD /d "0" /f
    reg add "HKLM\SOFTHIVE\Policies\Microsoft\Windows\Device Metadata" /v "PreventDeviceMetadataFromNetwork" /t REG_DWORD /d "1" /f
    reg add "HKLM\SOFTHIVE\Policies\Microsoft\Windows\DeliveryOptimization" /v "DODownloadMode" /t REG_DWORD /d "0" /f
    reg add "HKLM\SOFTHIVE\Microsoft\Windows\CurrentVersion\DeliveryOptimization\Config" /v "DODownloadMode" /t REG_DWORD /d "0" /f
    reg add "HKLM\SOFTHIVE\Microsoft\Windows\CurrentVersion\ReserveManager" /v "ShippedWithReserves" /t REG_DWORD /d "0" /f
    reg unload HKLM\SOFTHIVE
    
    
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  17. Terepin

    Terepin MDL Senior Member

    Sep 19, 2012
    286
    73
    10
    What I'd like to know is why the hell has Microsoft removed default apps based on content (videos, music, etc.). Now I have to manually assign each file type to each app. What the f*ck were they smoking when they made this change?!
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  18. bromanbro

    bromanbro MDL Member

    Sep 30, 2012
    237
    39
    10
    The real bug reports that MSFT needs lol. The auto disable SMB1 is turned on but still, why give it the option to enable without manual intervention
     
  19. Espionage724

    Espionage724 MDL Expert

    Nov 7, 2009
    1,074
    395
    60
    #2220 Espionage724, Jul 20, 2021
    Last edited: Jul 20, 2021