Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I install .Net 3.5 on Windows 10?

I need to install .Net 3.5 so I can use SQL Server Express/Local Db in Visual Studio.

I have trawled the internet looking for answers and nothing works.

It got stuck on this all night, this is enabling .Net 3.5 from the Control Panel.

http://imgur.com/YZcIJeX

I even redownloaded Windows 10 and run this DISM command

DISM  /Online  /Enable-Feature  /FeatureName:NetFx3  /All  /LimitAccess  /Source:c:\sources\sxs

but it still hangs and won't do anything.

http://imgur.com/C0OS3Lc

If anyone could help me out that would be super helpful

like image 507
Alex Harley Avatar asked Nov 02 '15 22:11

Alex Harley


People also ask

Can not install .NET Framework 3.5 Windows 10?

Here we show you how to solve this issue. First, you can check if the component is already installed on your device. Go to Control Panel > Programs > Turn Windows features on or off, verify if . NET Framework 3.5 checkbox is selected and then proceed with the software installation.

Can you install .NET 3.5 if 4.0 is already installed?

Yes. You can install and run multiple versions of the . NET Framework on a computer. You can install the versions in any order.


1 Answers

.NET 3.5 cant be install by internet. you have to use your installation DVD or ISO downloaded from Microsoft website. use this command to install

DISM /Online /Enable-Feature /FeatureName:NetFx3 /Source:d:\sources\sxs /All /LimitAccess

d: should be the

  • ISO mapped drive if you use ISO file
  • DVD drive if you use installation DVD

Few important points.

  • If you use ISO file, There can be errors if you try to use a ISO from a network location.
  • If you download ISO from Microsoft web site careful about 32 bit and 64 bit.
  • Run command prompt as Administrator to run this command
  • If your command prompt hang without any response, probably it means Some windows updates installation is in progress. So restart the computer and try again.
  • Go to "Turn Windows feature on or off" window.If you installed properly, you can see .NET framework 3.5 is installed.

Here is the step by step guide I have written. http://codeketchup.blogspot.sg/2015/11/how-to-install-net-framework-35-on.html

like image 108
Nayana Adassuriya Avatar answered Oct 09 '22 13:10

Nayana Adassuriya