Windows 10 Hotfix Repository

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

  1. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,647
    103,310
    450
  2. Super Spartan

    Super Spartan MDL Expert

    May 30, 2014
    1,737
    1,005
    60
    #9065 Super Spartan, Sep 11, 2019
    Last edited: Sep 12, 2019
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. strotee

    strotee MDL Member

    Jan 30, 2011
    229
    205
    10
    @Ultra Male, just a head's up, that file was uploaded as an mp4, I ended up renaming the file in order for it to work.
     
  4. Super Spartan

    Super Spartan MDL Expert

    May 30, 2014
    1,737
    1,005
    60
    oh thanks for the heads up, I uploaded it as is in the .reg extension. Maybe that file sharing site changed it. Anyway, it should work if you rename the extension to .reg as you said. Thanks again.

    PS: I just changed the link to another site, that should work fine.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,197
    90,710
    340
    put.re or pastebin.com it :)
     
  6. Super Spartan

    Super Spartan MDL Expert

    May 30, 2014
    1,737
    1,005
    60
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,647
    103,310
    450
    You could also post the content of the reg file here in code tags, no host needed.
     
  8. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    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\""
    
    
     
  9. Carlos Detweiller

    Carlos Detweiller Emperor of Ice-Cream

    Dec 21, 2012
    6,766
    7,697
    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.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  10. endbase

    endbase MDL Guru

    Aug 12, 2012
    4,694
    1,717
    150
    Same here Winrar
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. KleineZiege

    KleineZiege MDL Expert

    Dec 11, 2018
    1,849
    2,099
    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:

  12. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,197
    90,710
    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
     
  13. Super Spartan

    Super Spartan MDL Expert

    May 30, 2014
    1,737
    1,005
    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...
  14. tavrez

    tavrez MDL Addicted

    Sep 28, 2015
    512
    345
    30
    Whats the difference of ^| with |?
     
  15. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,197
    90,710
    340
    inside (' ') loop command, you must escape pipe character | with ^