Windows 10 Hotfix Repository

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

  1. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,274
    94,761
    450
    You could also post the content of the reg file here in code tags, no host needed.
     
  2. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,411
    15,487
    210
    Code:
    Windows Registry Editor Version 5.00
    
    ; Add Install Command to Right Click .CAB Files
    [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CABFolder\shell\runas]
    @="Install this update"
    "HasLUAShield"=""
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CABFolder\shell\runas\command]
    @="cmd /k dism /online /add-package /packagepath:\"%1\""
    
    
     
  3. Carlos Detweiller

    Carlos Detweiller Emperor of Ice-Cream

    Dec 21, 2012
    6,349
    7,068
    210
    Note to these Reg entries: I had to uncheck association for .cab files in 7-Zip and (possibly) in WinRAR, in order to make this Install entry appear. As long as 7-Zip/WinRAR has an association to the .cab extension, it strangely does not show up.
     
  4. endbase

    endbase MDL Guru

    Aug 12, 2012
    4,673
    1,710
    150
    Same here Winrar
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. KleineZiege

    KleineZiege MDL Expert

    Dec 11, 2018
    1,694
    1,932
    60
    yes that's right, have my winrar synonymous set so, otherwise he has not seen the Reg entries in the context menu
     

    Attached Files:

  6. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,219
    84,892
    340
    It's not hard to script
    Code:
    @echo off
    for /f "tokens=2*" %%a in ('reg query HKCR\.cab ^| findstr \(') do set "_cab=%%b"
    reg delete "HKCR\%_cab%\Shell\RunAs" /f 2>nul
    reg add "HKCR\%_cab%\Shell\RunAs" /v "" /d Install
    reg add "HKCR\%_cab%\Shell\RunAs" /v HasLUAShield /d ""
    reg add "HKCR\%_cab%\Shell\RunAs\Command" /v "" /d "cmd /k dism /online /add-package /packagepath:\"%%1\""
    pause
     
  7. Super Spartan

    Super Spartan MDL Expert

    May 30, 2014
    1,709
    990
    60
    Yes when I install WinRAR I make sure I uncheck the .CAB association
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  8. tavrez

    tavrez MDL Senior Member

    Sep 28, 2015
    484
    315
    10
    Whats the difference of ^| with |?
     
  9. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,219
    84,892
    340
    inside (' ') loop command, you must escape pipe character | with ^
     
  10. 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...
  11. 3zero3

    3zero3 MDL Senior Member

    Apr 26, 2012
    421
    685
    10
    Did I say to "install"?

    I just comment the fact, it is for 1809, not 1903.
     
  12. tavrez

    tavrez MDL Senior Member

    Sep 28, 2015
    484
    315
    10
    I got a new anti-malware platform update on 1809(probably on other versions too): KB4052623 (Version 4.18.1908.7)
    If anyone installed it and can help please run sfc and dism scanhealth to see if it's going to break windows components or not
     
  13. AndyMutz

    AndyMutz MDL Senior Member

    Jun 30, 2011
    335
    629
    10
    if you mean the powershell defender errors, they occured on every windows 10 version since 1607 (not sure about 1507).

    -andy-
     
  14. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,274
    94,761
    450
    Then they seem to have fixed it, check the test :D