Windows 10 Hotfix Repository

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

  1. rockyanexpert

    rockyanexpert MDL Junior Member

    Mar 6, 2010
    87
    56
    0
    This folder contains all the other programs user installs on windows. Deleting it would make programs failure in uninstall/update.
    Hard linking to other location possible.
     
  2. Senjanov

    Senjanov MDL Member

    Jul 29, 2011
    217
    44
    10
    just showing update 12/7/2017 Update for Windows 10 Version 1607 for x64-based Systems (KB4023057)..size 563kb
    look up aboodi1406 w10 update nothing found that kb.. should I install that?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,206
    90,780
    340
  4. Senjanov

    Senjanov MDL Member

    Jul 29, 2011
    217
    44
    10
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. tavrez

    tavrez MDL Addicted

    Sep 28, 2015
    512
    345
    30
    There is a script available which can delete setups of replaced Office update from your PC, which will affect that folder as well, IIRC it was bundled with KMS_Auto
     
  6. moderate

    moderate MDL Guru

    Aug 31, 2009
    3,465
    2,484
    120
    Both vbs and ps1 work just like in x64/x32 version.
     
  7. moderate

    moderate MDL Guru

    Aug 31, 2009
    3,465
    2,484
    120
  8. moderate

    moderate MDL Guru

    Aug 31, 2009
    3,465
    2,484
    120
  9. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,206
    90,780
    340
    Then clean it manually :)

    this powershell script seach and compare found .msp files with referenced registry, and remove unregistered
    you can copy and paste commands directly in PS
    -WhatIf parameter shows you the files to be removed (without actual remove)
    delete it to remove files
    Code:
    $Registered = Get-ItemPropertyValue -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Patches\* -Name LocalPackage
    $Found = Get-ChildItem "$env:WINDIR\Installer\*" -Include *.msp -Recurse | Select-Object -ExpandProperty FullName
    Compare-Object $Registered $Found
    $Unregistered = $Found | Where-Object {$_ -notin $Registered}
    $Unregistered | Get-ChildItem | Measure-Object -Sum -Property Length
    $Unregistered | Remove-Item -WhatIf
    i remember writing simple guide to manually clean obsolete Office patches, but it was lost with the MDL post-deletion hack last year
    basically you go to Windows\Installer folder
    from upper bar add/activate "Title" details, and sort files by Title
    then check files that have similar titles, and delete the lower-version ones
    i.e.
    Patch;csisyncclient;15.0.4779.1000
    Patch;csisyncclient;15.0.4805.1000
     
  10. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,668
    103,487
    450
  11. SAM-R

    SAM-R MDL Guru

    Mar 21, 2015
    5,915
    5,754
    180
  12. Super Spartan

    Super Spartan MDL Expert

    May 30, 2014
    1,738
    1,007
    60
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  13. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,668
    103,487
    450
    I believe @abbodi1406 explained it before.

    From Google: