How to get the Windows 10 May 2020 Update version 2004

Page 25 of 116 FirstFirst ... 1523242526273575 ... LastLast

  1. Posts : 1,750
    Windows 10 HOME 64-BIT
       #240

    GARoss said:
    Using the Update Assistant everything looked fine until the Assistant wanted to restart my PC.

    After a minute or two into the update it restarted again, then returned to the update & abruptly said the update failed. Then restarted again & this time did a repair, restarted again & returned to v1909 (OS Build 18363.836) desktop.
    Sounds familiar... (happened to me, the very same thing!)
      My Computer


  2. Posts : 103
    Win 10 Pro 64 bit
       #241

    sygnus21 said:
    I've no idea what that is being downloaded, but as far as I know, and with all my 22+ years of PC building, I've yet to ever get a BIOS update through Windows Update. On the flipside, I've only used (built) Intel based systems. Perhaps someone else can enlighten me on this.

    That said, what kind of PC is that? It also looks like it's using an ARM CPU, instead of an Intel or AMD processor. That tells me the machine may be the exception to the rule. Perhaps systems with ARM processors work differently in the way the BIOS is updated? I don't know. Again, perhaps someone using those systems can enlighten me?

    But again, you could help us out by providing system information like make and model of the machine in question?

    Thanks.
    That screenshot is just for example, taken from here:
    How to use Windows Update in OS system and how to update BIOS through Windows update? | Official Support | ASUS Global

    my asus ROG that had experienced getting a BIOS update through windows update last year is intel based system (core i7-8750H).

    -------

    Sorry if it gets out of topic, the point is i just want to share that bios updates via windows update can sometimes make the drive unreadable in a particular OS, I experienced it myself.

    Thank you.
      My Computer


  3. Posts : 6
    Windows 10
       #242

    Hello everyone,
    I clean installed windows 10 2004 using Media Creation Tool last night. After the clean install, I checked for updates (Settings > Update & Security > Windows Update) till it shows "You're up to date".

    Today morning I recived a Quality Update(KB4556803). From what I found online for the update, it is for Windows Insiders in the Slow and Release Preview rings(Releasing Windows 10 Insider Preview Build 19041.264 to the Slow & Release Preview rings | Windows Experience Blog).
    How to get the Windows 10 May 2020 Update version 2004-1.jpg

    Since the clean install was using Media Creation Tool, the OS should be public release 2004. Why I got an Cumulative Update for Windows Insiders, when I never joined the Windows Insider Program? Does anyone else get this KB4556803 update too?
      My Computer


  4. Posts : 50,055
    Windows 10 Home 64bit 21H1 and insider builds
       #243

    vstar said:
    Hello everyone,
    I clean installed windows 10 2004 using Media Creation Tool last night. After the clean install, I checked for updates (Settings > Update & Security > Windows Update) till it shows "You're up to date".

    Today morning I recived a Quality Update(KB4556803). From what I found online for the update, it is for Windows Insiders in the Slow and Release Preview rings(Releasing Windows 10 Insider Preview Build 19041.264 to the Slow & Release Preview rings | Windows Experience Blog).
    How to get the Windows 10 May 2020 Update version 2004-1.jpg

    Since the clean install was using Media Creation Tool, the OS should be public release 2004. Why I got an Cumulative Update for Windows Insiders, when I never joined the Windows Insider Program? Does anyone else get this KB4556803 update too?
    That's the CU that brings 2004 up to the latest build 19041.264. It was originally released when 2004 was in release preview. It looks like your clean install didn't include that one.
      My Computer


  5. Posts : 15,441
    Windows10
       #244

    information   Information


    With 2004, the normal regedits to disable web
    search from the search bar no longer work.
    This guide shows how to disable websearch using some firewall rules



    Here's How





    Credit goes to user DefinitelyYou on www.reddit.com/r/Windows10

    Disable Web Search
    Run following powershell
    script as administrator.


    Code:
    # Check PowerShell is running as Administrator
    $Principal = ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent())
    If (-Not ($Principal.IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator))) {
        Write-Warning "You do not have Administrator rights to run this script.  Please run PowerShell as an Administrator."
        Break
    }
    # Inbound Rule
    $SearchIn = @{
        "DisplayName" = "Windows Search (MyRule-In)"
        "Package"     = "S-1-15-2-536077884-713174666-1066051701-3219990555-339840825-1966734348-1611281757"
        "Enabled"     = "True"
        "Action"      = "Block"
        "Direction"   = "Inbound"
    }
    If (-Not (Get-NetFirewallRule -DisplayName $SearchIn.DisplayName -ErrorAction SilentlyContinue) ) { 
        New-NetFirewallRule @
    SearchIn
    } Else { Set-NetFirewallRule @
    SearchIn
    } # Outbound Rule $SearchOut = @{ "DisplayName" = "Windows Search (MyRule-Out)" "Package" = "S-1-15-2-536077884-713174666-1066051701-3219990555-339840825-1966734348-1611281757" "Enabled" = "True" "Action" = "Block" "Direction" = "Outbound" } If (-Not (Get-NetFirewallRule -DisplayName $SearchOut.DisplayName -ErrorAction SilentlyContinue) ) { New-NetFirewallRule @
    Searchout
    } Else { Set-NetFirewallRule @
    Searchout
    chOut }
    Enable Web Search

    Run following powershell
    script as administrator.


    Code:
    # Check PowerShell is running as Administrator $Principal = ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()) If (-Not ($Principal.IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator))) { Write-Warning "You do not have Administrator rights to run this script. Please run PowerShell as an Administrator." Break } # Inbound Rule $SearchIn = @{ "DisplayName" = "Windows Search (MyRule-In)" "Package" = "S-1-15-2-536077884-713174666-1066051701-3219990555-339840825-1966734348-1611281757" "Enabled" = "False" "Action" = "Allow" "Direction" = "Inbound" } If (-Not (Get-NetFirewallRule -DisplayName $SearchIn.DisplayName -ErrorAction SilentlyContinue) ) { New-NetFirewallRule @
    SearchIn
    } Else { Set-NetFirewallRule @SearchIn } # Outbound Rule $SearchOut = @{ "DisplayName" = "Windows Search (MyRule-Out)" "Package" = "S-1-15-2-536077884-713174666-1066051701-3219990555-339840825-1966734348-1611281757" "Enabled" = "False" "Action" = "Allow" "Direction" = "Outbound" } If (-Not (Get-NetFirewallRule -DisplayName $SearchOut.DisplayName -ErrorAction SilentlyContinue) ) { New-NetFirewallRule @
    SearchOut
    } Else { Set-NetFirewallRule @
    SearchOut
    chOut
    }
    Dang - Lines showing as


    Set-NetFirewallRule @
    SearchIn

    should all be one line
    Set-NetFirewallRule @
    SearchIn


    Similarly for Searchout

    I cannot get editor to show correctly


    Last edited by cereberus; 29 May 2020 at 02:22.
      My Computer


  6. Posts : 1,750
    Windows 10 HOME 64-BIT
       #245

    kado897 said:
    That's the CU that brings 2004 up to the latest build 19041.264. It was originally released when 2004 was in release preview. It looks like your clean install didn't include that one.
    Got it too while I'm not an insider? And without a restart?!
      My Computer


  7. Posts : 6
    Windows 10
       #246

    RingTailCoon said:
    Got it too while I'm not an insider? And without a restart?!
    Yea. Unlike other "normal" Cumulative Updates, this one didn't ask for a reboot.

    - - - Updated - - -

    kado897 said:
    That's the CU that brings 2004 up to the latest build 19041.264. It was originally released when 2004 was in release preview. It looks like your clean install didn't include that one.
    Thanks for the reply.
    That's kinda wired since the CU for Windows Insider got pushed to a public release version 2004. And after install the CU, it didn't require a reboot.
      My Computer


  8. Posts : 27,164
    Win11 Pro, Win10 Pro N, Win10 Home, Windows 8.1 Pro, Ubuntu
       #247

    vstar said:
    Hello everyone,
    I clean installed windows 10 2004 using Media Creation Tool last night. After the clean install, I checked for updates (Settings > Update & Security > Windows Update) till it shows "You're up to date".

    Today morning I recived a Quality Update(KB4556803). From what I found online for the update, it is for Windows Insiders in the Slow and Release Preview rings(Releasing Windows 10 Insider Preview Build 19041.264 to the Slow & Release Preview rings | Windows Experience Blog).
    How to get the Windows 10 May 2020 Update version 2004-1.jpg

    Since the clean install was using Media Creation Tool, the OS should be public release 2004. Why I got an Cumulative Update for Windows Insiders, when I never joined the Windows Insider Program? Does anyone else get this KB4556803 update too?
    RingTailCoon said:
    Got it too while I'm not an insider? And without a restart?!
    Have you both either installed or uninstalled Internet Explorer, Sandbox, or Application Guard after updating?

    When you make install changes to those, Windows will either redownload and install, or just reinstall if you have not yet cleaned up Windows Update the latest Cumulative Update.
    It has always done that, because it needs to adjust changes for security updates.
      My Computers


  9. Posts : 50,055
    Windows 10 Home 64bit 21H1 and insider builds
       #248

    vstar said:
    Yea. Unlike other "normal" Cumulative Updates, this one didn't ask for a reboot.

    - - - Updated - - -



    Thanks for the reply.
    That's kinda wired since the CU for Windows Insider got pushed to a public release version 2004. And after install the CU, it didn't require a reboot.
    Not sure what is happening. I did the upgrade on one machine via the MCT iso and that went on the internet to get updates so maybe it was applying this CU. I checked for updates after and didn't get any. My other machine was updated via WU and the only updates I've had since are .NET and Flash.
      My Computer


  10. Posts : 1,750
    Windows 10 HOME 64-BIT
       #249

    Cliff S said:
    Have you both either installed or uninstalled Internet Explorer, Sandbox, or Application Guard after updating?

    When you make install changes to those, Windows will either redownload and install, or just reinstall if you have not yet cleaned up Windows Update the latest Cumulative Update.
    It has always done that, because it needs to adjust changes for security updates.
    None of these, oh well... As long as it works, it works! :) But I didn't cleaned up WU.

    Oh wait, Appguard was turned OFF when I turned on the PC. I turned it on again. Strange......
      My Computer


 

  Related Discussions
Our Sites
Site Links
About Us
Windows 10 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 10" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 19:43.
Find Us




Windows 10 Forums