9

Is there a redistributable .Net 3.5 installation package that is a silent installer?

Or alternatively, is there a switch that can be passed to the main redistributable .Net 3.5 installer to make it silent?

Brian R. Bondy
  • 339,232
  • 124
  • 596
  • 636

2 Answers2

14
dotnetfx35setup.exe /q /norestart

see the .net deployment guide at:

http://msdn.microsoft.com/en-us/library/cc160716.aspx

Machavity
  • 30,841
  • 27
  • 92
  • 100
Nir
  • 29,306
  • 10
  • 67
  • 103
-1

For Windows 10 you need to do following

DISM /Online /Enable-Feature /FeatureName:NetFx3 /All /LimitAccess /Source:"Path\To\microsoft-windows-netfx3-ondemand-package"

You can find thoose packages under sources\sxs of a Windows DVD

Jean Fiedler
  • 141
  • 9