Windows 10 Hotfix Repository

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

  1. Konstantinos

    Konstantinos MDL Member

    Sep 8, 2012
    199
    79
    10
    I know
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. cuteee

    cuteee MDL Guru

    Oct 13, 2012
    5,760
    996
    180
    I have 18362.295 (19H1) (Not Insider preview build), and I get message about install kb4512941. So if I install it I'll get 18362.329 ? It's not belong to 19H2 ?
     
  3. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,656
    103,419
    450
    Yes now it's a regular optional update.
     
  4. cuteee

    cuteee MDL Guru

    Oct 13, 2012
    5,760
    996
    180
    #8944 cuteee, Aug 31, 2019
    Last edited: Aug 31, 2019
    WU suggest me that. I'm not Insider.

    I was confused for a moment.

    In section WU - you get CU
    In section Insiders - you get IP CU.
     
  5. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,199
    90,725
    340
    #8945 abbodi1406, Sep 1, 2019
    Last edited: Sep 2, 2019
    Basic old-style brute-force method to restore RTM components (after a cleanup was executed after installing any CU)

    - get 18362.1 iso (created from UUP, official 18362.30 iso may work but not advisable)

    it must match the current installed edition and language and architecture

    - mount the matched edition from install.wim (you can mount it directly from virtual mounted iso)
    Code:
    md C:\Mount
    dism /Mount-Image /ImageFile:E:\sources\install.wim /Index:1 /MountDir:C:\Mount /ReadOnly
    
    - use NSudo/robocopy to copy missing components
    Code:
    NSudo.exe -U:T -P:E cmd.exe /c robocopy C:\Mount\Windows\WinSxS %SystemRoot%\WinSxS /R:0 /W:0 /NFL /NDL /J /S /DCOPY:DAT /XC /XN /XO /XX /XF migration.xml pending.xml poqexec.log /XD Backup Catalogs FileMaps InstallTemp ManifestCache Temp
    
    - import the components registry keys
    Code:
    reg query HKLM\COMPONENTS >nul 2>&1 && (net stop trustedinstaller >nul 2>&1 &reg unload HKLM\COMPONENTS >nul 2>&1)
    reg load HKLM\COMPONENTS C:\Mount\Windows\System32\Config\COMPONENTS
    reg export HKLM\COMPONENTS\CanonicalData\Deployments "%temp%\Deployments.reg"
    reg export HKLM\COMPONENTS\DerivedData\Components "%temp%\Components.reg"
    reg unload HKLM\COMPONENTS
    reg load HKLM\COMPONENTS %SystemRoot%\System32\Config\COMPONENTS
    reg import "%temp%\Deployments.reg"
    reg import "%temp%\Components.reg"
    for /f "tokens=* delims=" %i in ('reg query HKLM\COMPONENTS\DerivedData\VersionedIndex ^| findstr /i VersionedIndex') do reg delete "%i" /f
    reg unload HKLM\COMPONENTS
    del /f /q "%temp%\*.reg"
    
    - run DISM to check and restore health (and rebuild VersionedIndex registry key)
    Code:
    Dism /Online /Cleanup-Image /RestoreHealth /Source:C:\Mount\Windows /LimitAccess
    
    - unmount install.wim
    Code:
    dism /Unmount-Image /MountDir:C:\Mount /Discard
    rd /s /q C:\Mount
    
     
  6. DontuZoru

    DontuZoru MDL Senior Member

    Mar 6, 2014
    273
    131
    10
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,656
    103,419
    450
    At this moment it's the same CU in retail release ring "optional download" (normal user) and in RP ring (insider)
     
  8. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,656
    103,419
    450
  9. tavrez

    tavrez MDL Addicted

    Sep 28, 2015
    512
    345
    30
    The registry part was jaw dropping.
    Wondering why Windows can't do the fix by itself
     
  10. Konstantinos

    Konstantinos MDL Member

    Sep 8, 2012
    199
    79
    10
    Is Microsoft aware of this severe bug? Has anyone reported it?

    Edit: though it may be a curse for me and many others, it could be a bless for the people that hate updating their Windows 10. :p Did we just discover a built-in permanent way to stop updates? "It's not a bug, it's a feature."
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. jmtella

    jmtella MDL Senior Member

    Nov 18, 2012
    284
    160
    10
    I have Enterprise... Index:1 ?...
    I also have the Spanish language pack installed. Any precautions?

    Regards,
     
  12. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,199
    90,725
    340
  13. Schroedinger2015

    Schroedinger2015 MDL Member

    Jul 16, 2015
    229
    150
    10
    Maybe a stupid question. Where I could find NSudo.exe ?
     
  14. erpsterm35

    erpsterm35 MDL Guru

    May 27, 2013
    2,041
    2,023
    90
    the recent Adobe Flash updates from July & August 2019 were non-security fixes, SM03
    Adobe did not give MS the updated Flash Player OCX files for the past few months to patch for Win8.x & 10
     
  15. bonesz

    bonesz MDL Addicted

    Jun 30, 2013
    644
    371
    30
    Code:
    NSudo.exe -U:T -P:E cmd.exe /c robocopy C:\Mount\Windows\WinSxS %SystemRoot%\WinSxS /R:0 /W:0 /NFL /NDL /J /S /DCOPY:DAT /XC /XN /XO /XX /XF migration.xml pending.xml poqexec.log /XD Backup Catalogs FileMaps InstallTemp ManifestCache Temp
    Does this produce output? I executed this and another cmd window opened, but I did not see any files being copied.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  16. Schroedinger2015

    Schroedinger2015 MDL Member

    Jul 16, 2015
    229
    150
    10
    It copies needed file in background and when finished cmd windows closes itself.
     
  17. cacrosh123

    cacrosh123 MDL Junior Member

    Apr 29, 2015
    59
    16
    0
    stupid question I assume, apologiez in advance.

    Can I use the updates from v1903: May 2019 or must I use the v1809: October 2018 ones for things not to bug out or cause issues?

    Thing is that I'm gonna install LTSC 2019 on a pure gaming machine, thanks in advance.
     
  18. shhnedo

    shhnedo MDL Expert

    Mar 20, 2011
    1,827
    2,428
    60
    Why would you do that? You install LTSC 2019 - you install updates for ltsc 2019(build 17763).