Windows 10 Hotfix Repository

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

  1. gnugeek

    gnugeek MDL Member

    Nov 23, 2009
    171
    41
    10
    Yes explorer has crashed few times after being on 10586.36.
     
  2. murphy78

    murphy78 MDL DISM Enthusiast

    Nov 18, 2012
    7,419
    11,688
    240
    No, sorry. *shrug*
     
  3. oldee

    oldee MDL Member

    May 27, 2012
    171
    47
    10
    Hi! murphy78 , Happy New Year.
     
  4. damianfox

    damianfox MDL Senior Member

    Jan 23, 2011
    423
    309
    10
    #1805 damianfox, Jan 4, 2016
    Last edited: Jan 4, 2016
    For those two that are having explorer.exe crashing did you guys upgrade Win10 to 1511 ? Or was it a fresh install of 1511 ?

    I fresh installed Win10 Enterprise N 1511 and don't have any issues, I also integrated the latest cumulative update and then turned it into a "Super LTSB", I then made the ISO burned it to a disk, Unplugged the cable modem, Installed it, then once I disabled Windows Update I turned the cable modem back on and lastly installed all my drivers.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,668
    103,485
    450
    Problem seems to be solved by installing the new flash update for 1511 (released today): KB3133431
     
  6. drew84

    drew84 MDL Expert

    Mar 13, 2014
    1,397
    2,381
    60
  7. ashish.k

    ashish.k MDL Senior Member

    Dec 27, 2014
    299
    134
    10
    #1808 ashish.k, Jan 6, 2016
    Last edited: Jan 6, 2016
    @drew84

    In my knowledge .NetFX 4.6.1 (KB3102436) is not needed on build 10586. It was not offered via Windows Update to me and also manual installing is not possible as it says it's already installed. I tried it on clean build 10586.0 install also. It is only needed for build 10240 and Win7/8/8.1 only.
     
  8. drew84

    drew84 MDL Expert

    Mar 13, 2014
    1,397
    2,381
    60
  9. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,206
    90,780
    340
    KB3102436 .exe (KB3102495 .cab) is for build 10240 only
     
  10. tistou77

    tistou77 MDL Expert

    Mar 22, 2008
    1,947
    612
    60
    What is the command with DISM to "install" hotfix Online?
    I tried with this one but it does not work

    Dism /Online/add-package /packagepath:E:\WinUpdates\Online (updates in the Online folder)

    Thanks
     
  11. agent268

    agent268 MDL Junior Member

    Feb 20, 2012
    95
    34
    0
    I have mostly heard of it occurring due to a bug in the IDT High Definition Audio Codec's Control Panel applet (IDTNC64.cpl). Uninstall the IDT Audio software and install the default Windows 10 Version 1511 HD Audio drivers or install the latest version of the IDT HD Audio Codec drivers.
     
  12. tistou77

    tistou77 MDL Expert

    Mar 22, 2008
    1,947
    612
    60
    #1815 tistou77, Jan 7, 2016
    Last edited: Jan 7, 2016
    Arf ... I do not remember

    I use a script (to force LDR installation on Windows 7 but it works in 10) to install them
     
  13. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,206
    90,780
    340
    #1816 abbodi1406, Jan 7, 2016
    Last edited by a moderator: Apr 20, 2017
    dism cannot install .msu packages for online system, only .cab

    so, extract them first of .msu files, as example:
    Code:
    mkdir E:\WinUpdates\Online\temp
    expand.exe -f:*Windows*.cab E:\WinUpdates\Online\*.msu E:\WinUpdates\Online\temp
    Dism /Online /Norestart /add-package /packagepath:E:\WinUpdates\Online\temp
    rd E:\WinUpdates\Online\temp
     
  14. tistou77

    tistou77 MDL Expert

    Mar 22, 2008
    1,947
    612
    60
    #1817 tistou77, Jan 7, 2016
    Last edited by a moderator: Apr 20, 2017
    Thanks :)

    If I use this command in a batch like this, it's good for any hotfix, I suppose?

    Code:
    @echo off
    mkdir E:\WinUpdates\Online\temp
    expand.exe -f:*Windows*.cab E:\WinUpdates\Online\*.msu E:\WinUpdates\Online\temp
    Dism /Online /Norestart /add-package /packagepath:E:\WinUpdates\Online\temp
    rd E:\WinUpdates\Online\temp
    Pause
     
  15. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,206
    90,780
    340
    #1818 abbodi1406, Jan 7, 2016
    Last edited by a moderator: Apr 20, 2017
    Yes

    if you don't want to strict that path, you may use this,
    it will install any .msu & .cab files found next to the script:
    Code:
    @echo off
    reg.exe query "HKU\S-1-5-19" 1>nul 2>nul || goto :eof
    cd /d "%~dp0"
    if not exist "*.msu" if not exist "*.cab" exit
    mkdir .\temp
    expand.exe -f:*Windows*.cab *.msu .\temp
    copy /y *.cab .\temp
    Dism /Online /Norestart /add-package /packagepath:.\temp
    rd .\temp
    pause
     
  16. tistou77

    tistou77 MDL Expert

    Mar 22, 2008
    1,947
    612
    60
    #1819 tistou77, Jan 7, 2016
    Last edited by a moderator: Apr 20, 2017
    Ok, thanks for your help :)
     
  17. samgu

    samgu MDL Novice

    Mar 30, 2015
    15
    0
    0
    How did you integrate it DFox?