This is a fairly common error and one for which there seems to be a whole range of random ways to fix, depending on your situation. Personally speaking, it was the uninstall of the Updates which solved it but anecdotally speaking, a lot of these have helped various folk:
1] If present, uninstall updates KB2966826, KB2966827 and KB2966828
2] Check the syntax is correct:
DISM /Online /Enable-Feature /FeatureName:NetFx3 /All /LimitAccess /Source:d:\sources\sxs
In case anyone needs it, here's what the commands actually mean:
- /Online targets the operating system you're running (instead of an offline Windows image).
- /Enable-Feature /FeatureName:NetFx3 specifies that you want to enable the .NET Framework 3.5.
- /All enables all parent features of the .NET Framework 3.5.
- /LimitAccess prevents DISM from contacting Windows Update.
- /Source specifies the location of the files needed to restore the feature (in this example, the D:\sources\sxs directory).
4] If the server has internet access, drop the /LimitAccess from the syntax
No comments:
Post a Comment