Enable .NET Framework 3.5 On Windows 10
.NET Framework 3.5 is the basic need for some apps you’ll use on your Windows 10 machine. Since these apps are written/coded with .NET language, hence you additionally need to enable .NET framework to run them. This framework is not enabled by default in Windows since the OS uses C, C++, C#, V# etc. language packages. So when you run any app requiring .NET Framework, you’ll receive this window:
An app on your PC needs the following Windows feature:
.NET Framework 3.5 (includes .NET 2.0 and 3.0)
Here is the how-to part:
How To Enable .NET Framework 3.5 On Windows 10
1. Create a temporary folder under system root drive directory (i.e. if Windows is installed on C: drive, then create Temp folder such that its can be located at C:\Temp).
2. Locate the Windows 10 ISO file in File Explorer, right click on it and select Mount. Reboot the machine, you’ll find that ISO file is mounted to DVD drive with temporary drive letter. You can also or alternatively plug DVD like the way I did. Open this drive and open Sources folder. Copy the sxs folder now to temporary folder you’ve create in step 1.
powershell
in Windows and spot Windows PowerShell from search results. Right click on it and select Run as administrator. 4. Finally, in the administrative or elevated Windows PowerShell, type following command and press Enter key:
dism.exe /online /enable-feature /featurename:NetFX3 /All /Source:c:\temp\sxs /LimitAccess
* Substitute c:\temp with the temporary folder location we created in step 1.
In few seconds, you’ll get The operation completed successfully message, which indicates the .NET Framework has been enabled on your system.
Comments
Post a Comment