Windows 10 Hotfix Repository

Discussion in 'Windows 10' started by Tito, Oct 1, 2014.

  1. AveYo

    AveYo MDL Expert

    Feb 10, 2009
    1,836
    5,693
    60
    quick way to reset WU press Win+X -> Command Prompt (Admin) or Powershell (Admin) and enter:
    Code:
    echo .
    taskkill /t /f /im trustedinstaller.exe /im tiworker.exe /im wuauclt.exe /im sihclient.exe /im usoclient.exe /im mousocoreworker.exe
    bitsadmin /reset /allusers
    net1 stop wuauserv
    net1 stop bits
    net1 stop cryptsvc
    cmd /c rd /s /q "%SystemRoot%\system32\catroot2"
    cmd /c rd /s /q "%SystemRoot%\SoftwareDistribution"
    net1 start cryptsvc
    net1 start bits
    net1 start wuauserv
    echo .
    
    Sometimes wuauserv remains in limbo and cannot restart, so enter the same commands one more time, it usually fixes it.
    Won't fix broken/blocked WU by various software and scripts, in that case you need an in-place-upgrade like Enthousiast mentioned
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. 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...
  3. nosirrahx

    nosirrahx MDL Expert

    Nov 7, 2017
    1,239
    592
    60
    C:\ProgramData\USOPrivate\UpdateStore <- isn't this also involved on newer Windows 10 builds?
     
  4. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,233
    94,614
    450
    Maybe sharing the cbs log will enable people like @abbodi1406 to help you.
     
  5. 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...
  6. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,233
    94,614
    450
    Did you do the inplace upgrade using the 19041.508 ISO when you successfully uninstalled the 20H2 EP?
     
  7. Super Spartan

    Super Spartan MDL Expert

    May 30, 2014
    1,709
    990
    60
    oh no, could you please explain and perhaps link me to that ISO?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  8. 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...
  9. donmiller

    donmiller MDL Addicted

    Jun 4, 2016
    719
    444
    30
    Enthousiast, you really did a good job of steering Spartan in the right direction about this issue. I have uninstalled the EP several times, and performed in-place upgrades after that, and it has worked every time!
     
  10. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,233
    94,614
    450
    I assume something done by the user?

    The cbs log is still available.
     
  11. nosirrahx

    nosirrahx MDL Expert

    Nov 7, 2017
    1,239
    592
    60
    IDK, I have had 100% bone stock installs fail to install updates from time to time and heavily modified installed go from 1803 all the way to 20H2 without ever having a problem installing updates.

    One thing I do know that increases the odds of updates failing is installing additional languages. I maintain a few systems that have Russian and/or Ukrainian installed on top of a base English install and they seem to frequently have issues with updates.
     
  12. Windows 10 User

    Windows 10 User MDL Expert

    Feb 2, 2017
    1,908
    118
    60
    #10514 Windows 10 User, Sep 11, 2020
    Last edited: Sep 11, 2020
    I thought starting with Patch Tuesday a single installer would be offered to LCU and SSU. Also, does anyone have problems when running a VM created by Hyper-V after installing the LCU? It seems to be an ethernet problem.
     
  13. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,233
    94,614
    450
    In the future, not on the updates from last tuesday.

     
  14. donmiller

    donmiller MDL Addicted

    Jun 4, 2016
    719
    444
    30
    I'm hearing sporadic reports from other websites about this months (9/2020) updates creating issues with the following:
    --Windows Subsystem for Linux (WSL2)
    --Trimming of HDDs (defragment/optimization) <--Not completely fixed for HDDs.
    --Bitdefender (Security)
    --Paintshop Pro 7

    The only issue that affects my systems is the defragment bug. I've long since turned off Windows automatic trimming of my SSDs. I just manually trim them with the following commandlines:

    From an elevated command prompt:
    Defrag X: /L /U
    Where X is the driveletter for the SSD to be trimmed. Note: Colon after the drive letter.

    From Powershell:
    Optimize-Volume -DriveLetter X -ReTrim -Verbose
    Where X is the driveletter for the SSD to be trimmed. Note: No Colon after the drive letter.
     
  15. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,233
    94,614
    450
    SSD trimming and showing "never ran" were fixed in .487 iirc (or earlier).

    SSD:
    Code:
    Microsoft Windows [Version 10.0.19042.508]
    (c) 2020 Microsoft Corporation. All rights reserved.
    
    C:\WINDOWS\system32>defrag c:\ /l /u
    
    Invoking retrim on Windows_10_Ent (C:)...
    
    
    Performing pass 1:
            Retrim:  100% complete.
    
    The operation completed successfully.
    
    Post Defragmentation Report:
    
            Volume Information:
                    Volume size                 = 274,75 GB
                    Free space                  = 40,34 GB
    
            Retrim:
                    Total space trimmed         = 38,20 GB
    
    C:\WINDOWS\system32>
    HDD:
    Code:
    C:\WINDOWS\system32>defrag e:\ /l /u
    
    Invoking retrim on NieuwVolume (E:)...
    
            Retrim:  100% complete.
    
    The operation requested is not supported by the hardware backing the volume. (0x8900002A)
    
    C:\WINDOWS\system32>
     
  16. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,233
    94,614
    450
  17. steven4554

    steven4554 MDL Expert

    Jul 12, 2009
    1,428
    2,610
    60
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...