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
@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)
netfx3 sets the pending flag which prevent image cleanup (if activated or possible) the cumulative reinstall will only add netfx3 related components
Is this Reset PC feature still broken in insider builds after 1709? And is it known why it is broken?
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?
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? Spoiler: success install at 10th Spoiler: Offered again today in 13th
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
@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).