Windows 10 Hotfix Repository

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

  1. Senjanov

    Senjanov MDL Member

    Jul 29, 2011
    217
    44
    10
    thanks abbodi,
    about KB4023814, atm I dont get that kb. I means dont show in wu.

    Currently running windows 10 1703
    so maybe I can confirm about this update is "upgrade" to new windows version?
    Code:
    KB4023057 upgrade
    KB4033631 upgrade
    KB4056254 upgrade
    KB4073543 upgrade
    KB4023814 upgrade
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. KedarWolf

    KedarWolf MDL Addicted

    Mar 17, 2016
    977
    874
    30
    I had NTFS Compression disabled in the registry for all my hard drives. Google is your friend. ;)
     
  3. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,656
    103,411
    450
  4. ananhaid

    ananhaid MDL Member

    Oct 16, 2017
    246
    221
    10
    @abbodi1406

    could let the enable netfx3 feature be the first step if enable .net framework 3.5? because now using w10ui 4.4 to patch ltsb 1607 10.14393 the step is:
    1:servicing stack
    2:cumulative
    3:.netfx3
    4:cumulative (re-patch twice)
     
  5. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,197
    90,724
    340
    netfx3 sets the pending flag which prevent image cleanup (if activated or possible)
    the cumulative reinstall will only add netfx3 related components
     
  6. tavrez

    tavrez MDL Addicted

    Sep 28, 2015
    512
    345
    30
    Is this Reset PC feature still broken in insider builds after 1709? And is it known why it is broken?
     
  7. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,197
    90,724
    340
    It's not broken

    the porpose of the feature is to uninstall updates and revert to fresh OS install

    when you resetbase the OS and remove rtm components, how do you expect the feature to work in that case?
     
  8. tavrez

    tavrez MDL Addicted

    Sep 28, 2015
    512
    345
    30
    So it was like this from the first version till now? I thought it had some changes recently...
     
  9. Senjanov

    Senjanov MDL Member

    Jul 29, 2011
    217
    44
    10
    #5530 Senjanov, Mar 13, 2018
    Last edited: Mar 13, 2018
    after successfully installing on the 10th, today offered again with the same kb number KB4092077 on the 13th.

    previous kb number is different but same 15063.936. now even though it is installed, was offered again to install with KB4092077 which on the previous 10 already installed. what's wrong with microsoft? what else also receive update notice windows 1703?

    Capture.PNG

    Screenshot (3).png
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  10. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,656
    103,411
    450
    https://forums.mydigitallife.net/threads/windows-10-hotfix-repository.57050/page-276#post-1416600
    https://forums.mydigitallife.net/threads/windows-10-hotfix-repository.57050/page-277#post-1416607
     
  11. rpo

    rpo MDL Expert

    Jan 3, 2010
    1,479
    1,474
    60
    @abbodi1406
    In some cases it could be usefull to get splitted install.wim files if one wants to copy the ouput generated by W10UI on a fat32 formatted USB stick and the install.wim is over GB.
    Just include the following statement after line 431 of W10UI.cmd version v4.4.
    Code:
    rem start creating split files
    :: Set to y|Y if SWMfiles desired
    set "split=y"
    
    if /i %split%==Y if /i %~nx1==install.wim (
    echo.
    echo ============================================================
    echo Split install.wim if size ^> 4 GB
    echo ============================================================
    "%dismroot%" /Split-Image /ImageFile:"%~dp0temp.wim" /SWMFile:"%~dp1install.swm" /FileSize:4000  >nul 2>&1
    if exist "%~dp1install2.swm" (
    echo.
    echo Split image files created, install.wim deleted
    echo.
    del %1 >nul
    del "%~dp0temp.wim" >nul
    ) else (
    echo.
    echo No split image files created, install.wim kept
    echo.
    del "%~dp1install.swm" >nul 2>&1
    move /y "%~dp0temp.wim" %1 >nul
    )
    goto :eof)
    rem end creating split files
    BTW I find unconvenient that the target directory is deleted at line 749. Delete its content could be preferable (but this is only a detail).
     
  12. TeamOS

    TeamOS MDL Guru

    May 27, 2013
    3,036
    1,739
    120
  13. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,093
    24,397
    340
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. TeamOS

    TeamOS MDL Guru

    May 27, 2013
    3,036
    1,739
    120
    go it thanks done!