Of course there are, all updates in Windows8.1-Update3 list are required (not available) for the new ISO release
cannot install .NET 3.5 no matter what; I modify GP to allow windows update to download it and I get error code 0x800F0906, use this cmd line: Code: DISM /online /enable-feature /featurename:NetFX3 /source:"D:\Windows8.1.3\IR5_CCSA_X64FRE_EN-US_DV9\sources\sxs" /LimitAccess I've used since the beginning of time and I now get error code 0x800F0907. I forgot to enable it offline when I was building a new baseline image, so i mounted the image and used this cmd line: Code: DISM /Image:D:\Windows8.1.3\Offline /enable-feature /featurename:NetFX3 /Source:D:\Windows8.1.3\IR5_CCSA_X64FRE_EN-US_DV9\sources\sxs /LimitAccess I've also used since the beginning of time and I again now get error code 0x800F0907. I tried the MS fix exe-must work for everybody but me. So, does anybody know how I can get 3.5 installed. I need it. Thanks
Thanks abbodi1406, man you're a miracle worker...wish I had your where-with-all. Well, now that I've buttered ya' up a bit-I'm almost scared to tell you this because nobody will help me anymore because I bring stupidity to a new level. I figured it out finally to be when I created the updated offline image using latest KUC it had .NET 3.5 automatically checked for updates, but, I had not enabled the feature offline in that image yet-like I said, forgot.... So, long story short, I complete a fresh install using that wim with all the 3.5 updates loaded, but, .NET 3.5 itself not enabled. The fix was to uninstall all the .NET 3.5 updates live, reboot, enable 3.5 using Code: DISM /online /enable-feature /featurename:NetFX3 /source:"D:\Windows8.1.3\IR5_CCSA_X64FRE_EN-US_DV9\sources\sxs" /LimitAccess , reboot and reinstall all of the 3.5 updates live. Now I'm good to go any which way I want-offline or on and have loaded that wim offline to enabled the feature using Code: DISM /Image:D:\Windows8.1.3\Offline /enable-feature /featurename:NetFX3 /Source:D:\Windows8.1.3\IR5_CCSA_X64FRE_EN-US_DV9\sources\sxs /LimitAccess , and all went through perfectly. Again, really sorry to waste your time, but, I saved your commands and advice-you never know..... I have to learn to pay more attention to details.
From memory, only some of the files are actually updated in 4.5.2, and 4.5.2 is only a minor update. I guess that's the reason for the 'large' version bump . Basically, I guess the updates are for files not updated in the 4.5.2 (kind of) release, but have since been updated. Traditionally you wouldn't be able to do this, but it seems to be how things are now. It would be like installing updates on Update 3 of Windows 8.1, in a way. In other words, 4.5.2 could be considered 4.5 update 2.
No all, latest .NET 4.5.2 package (hotfix rollup) suppress 3 or 4 security updates besides 4.5.2 pack, only 3 security updates are required: KB2898850, KB2977765, KB2979576
@Komm I just thought I would show those permanent updates in Windows 8.1.3 that KUC tries to remove with the, of course, accompanying errors. Don't know if you really wish to take the time in KUC's enumeration process to exclude these KB's from removal within the latest rollup ISO in the Remove_OLD.cmd. This is strictly just the updates already part of M$'s Nov ISO: Spoiler @echo off set dest=/online rem set tmpdir=D:\offline rem set dest=/image:%tmpdir% if %dest%==/Online DO ( set AUSetting=0x0 for /f "tokens=2* delims=0x" %%A IN ('REG query "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /v AUOptions') DO ( set AUSetting=0x%%A ) if %AUSetting%==0x0 GOTO Problem if %AUSetting%==0x1 GOTO NoProblem if %AUSetting%==0x2 GOTO NoProblem if %AUSetting%==0x3 GOTO Problem if %AUSetting%==0x4 GOTO Problem roblem echo. echo !!!!!!!!!! Warning!!!!!!!!!!!!! echo You want to remove OLD packages but have enabled Windows Update. echo This may end in [BAD] packages. echo Set WU to [Never check for updates] echo !!!!!!!!!! Warning!!!!!!!!!!!!! echo. pause ) :NoProblem Echo Number of packages to remove : 11 Echo ===================================================================== Echo Removing package 1 to 10 of 11 packages %time% dism %dest% /norestart /remove-package /packagenameackage_for_KB3001237~31bf3856ad364e35~amd64~~6.3.1.0 /packagenameackage_for_KB2998527~31bf3856ad364e35~amd64~~6.3.1.1 /packagenameackage_for_KB2987107~31bf3856ad364e35~amd64~~6.3.1.4 /packagenameackage_for_KB2981580~31bf3856ad364e35~amd64~~6.3.1.2 /packagenameackage_for_KB2977629~31bf3856ad364e35~amd64~~6.3.1.4 /packagenameackage_for_KB2976978~31bf3856ad364e35~amd64~~6.3.2.1 /packagenameackage_for_KB2966407~31bf3856ad364e35~amd64~~6.3.1.0 /packagenameackage_for_KB2958263~31bf3856ad364e35~amd64~~6.3.1.2 /packagenameackage_for_KB2939153~31bf3856ad364e35~amd64~~6.3.1.1 /packagenameackage_for_KB2931366~31bf3856ad364e35~amd64~~6.3.1.4 /LogPath:"%~dp0DISM.log" /loglevel:2 Echo. Echo ===================================================================== Echo Removing package 11 to 11 of 11 packages %time% dism %dest% /norestart /remove-package /packagenameackage_for_KB2931358~31bf3856ad364e35~amd64~~6.3.1.2 /LogPath:"%~dp0DISM.log" /loglevel:2 Echo. echo. echo. echo ############################################################################### echo REBOOT !!!! Most of the problems with the installation of new packages are a echo REBOOT !!!! result of skipping the reboot !!! echo ############################################################################### echo. echo. echo Press any key to reboot pause >nul shutdown -r -t 0 Like I said very trivial; just thought I would mention it for what it's worth is all-like you don't have enough to do.