Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

redistributable offline .NET Framework 3.5 installer for Windows 8

Our company was testing our product (compiled for .NET Framework 3.5) on Windows 8. We have discovered that there is no .NET Framework 3.5 on Windows 8 and there are two possibilities to resolve this issue:

  1. online installation

  2. install from Windows 8 installation DVD or ISO

But, we need to have redistributable offline installer for everyone without internet and without Windows installation DVD.

Is there a way how to resolve this issue?

Thanks.

UPDATE:

This should apply to Windows 10 as well.

like image 936
Tomas Kubes Avatar asked Oct 15 '12 14:10

Tomas Kubes


1 Answers

Try this command:

Dism.exe /online /enable-feature /featurename:NetFX3 /Source:I:\Sources\sxs /LimitAccess

I: partition of your Windows DVD.

like image 151
Hammond22 Avatar answered Sep 30 '22 15:09

Hammond22