Cannot Install .NET 3.5 Or Lower
Description:
Follow these steps if you keep getting errors when attempting to install .NET 3.5 or 2.0 on Windows Servers.
To Resolve:
-
Run => cmd:
1
DISM /Online /Enable-Feature /FeatureName:NetFx3 /All
-
If it still fails, load your installer disc and type:
1
DISM /Online /Enable-Feature /FeatureName:NetFx3 /All /LimitAccess /Source:d:\sources\sxs
-
Alternatively, you can use Powershell:
1 2 3
Install-WindowsFeature Net-Framework-Core -source \\network\share\sxs #or D:\sources\sxs. Run get-windowsfeature afterwards to make sure it installed.
Comments