Windows 10 Hotfix Repository

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

  1. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,020
    93,847
    450
  2. Konstantinos

    Konstantinos MDL Member

    Sep 8, 2012
    199
    79
    10
    Bro I HAVE NOT run any clean up and I HAVE disabled the auto clean up task under Task Scheduler > Microsoft > Windows > Servicing. I'm not lying. If anything it was done by itself and I have no idea how. I've formatted 2 times and Im trying to fix the problem, why would I be lying?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,141
    84,318
    340
    No one said you are lying, i just pointed to the fact that a cleanup was performed

    after further digging, it seems launch by the system
    Code:
    2019-08-31 00:50:58, Info CBS    Maint: launch type: Automatic
    2019-08-31 00:50:58, Info CBS    Maint: begin deep clean
     
  4. Konstantinos

    Konstantinos MDL Member

    Sep 8, 2012
    199
    79
    10
    Is there any way to prevent it? As I said I have disabled the task under Task Scheduler > Microsoft > Windows > Servicing but apparently it didn't do anything. Do I have to disable anything else? Some registry tweaks?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,141
    84,318
    340
    You may also disable Microsoft\Windows\DiskCleanup\SilentCleanup
     
  6. TairikuOkami

    TairikuOkami MDL Expert

    Mar 15, 2014
    1,171
    1,052
    60
    Does disabling "Windows Update Cleanup" prevent this problem?
    Code:
    reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer\VolumeCaches\Update Cleanup" /v "StateFlags6553" /t REG_DWORD /d "0" /f
    cleanmgr /sagerun:6553
     
  7. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,020
    93,847
    450
  8. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,141
    84,318
    340
    Does that totally disable it?
    maybe this?
    Code:
    reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VolumeCaches\Update Cleanup" /v Autorun /t REG_DWORD /d 0 /f
    however, Update Orchestrator may initiate the cleanup on its own, whatever how that happen
     
  9. Konstantinos

    Konstantinos MDL Member

    Sep 8, 2012
    199
    79
    10
    Clean formatted, disabled every auto task possible and maintenance. Still same error. Im fking out, bye. Cya when 20H1 releases.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  10. SAM-R

    SAM-R MDL Guru

    Mar 21, 2015
    5,801
    5,573
    180
    20H1 is due to release in April 2020.
     
  11. 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...
  12. cuteee

    cuteee MDL Guru

    Oct 13, 2012
    5,720
    978
    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 ?
     
  13. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,020
    93,847
    450
    Yes now it's a regular optional update.
     
  14. cuteee

    cuteee MDL Guru

    Oct 13, 2012
    5,720
    978
    180
    #8956 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.
     
  15. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,141
    84,318
    340
    #8957 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
    
     
  16. DontuZoru

    DontuZoru MDL Senior Member

    Mar 6, 2014
    264
    130
    10
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  17. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,020
    93,847
    450
    At this moment it's the same CU in retail release ring "optional download" (normal user) and in RP ring (insider)
     
  18. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,020
    93,847
    450
    #8960 Enthousiast, Sep 1, 2019
    Last edited: Sep 2, 2019