Skip to content

Instantly share code, notes, and snippets.

@davamix
Created April 25, 2017 09:54
Show Gist options
  • Save davamix/3513be9efbefd5c9e1aafa2a85d74e11 to your computer and use it in GitHub Desktop.
Save davamix/3513be9efbefd5c9e1aafa2a85d74e11 to your computer and use it in GitHub Desktop.
Install .NET Framework 3.5 on Windows 10
On Windows 10 is not possible to install .NET Framework 3.5 using the "Turn Windows features on or off" option because the error 0x800F081F.
In my case I installed it following the steps below:
1. Go to https://my.visualstudio.com and download "Windows 10 Features on Demand" iso (x86 or x64).
2. Mount the iso
3. Open a PowerShell command line as Administrator and run the next command
3.1 Dism /online /enable-feature /featurename:NetFX3 /All /Source:D:\ /LimitAccess
The output should something like this:
----------------------------------------
Deployment Image Servicing and Management tool
Version: 10.0.14393.0
Image Version: 10.0.14393.0
Enabling feature(s)
[==========================100.0%==========================]
The operation completed successfully.
---------------------------------------------
If you go to "Turn Windows features on or off" the option fot .NET Framework 3.5 must be cheked.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment