.NET 3.5 silent installer?
Asked Answered
H

2

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?

Hoop answered 7/9, 2008 at 12:52 Comment(0)
L
14

Use

dotnetfx35setup.exe /q /norestart

For more details, see the .NET Framework 3.5 Deployment Guide for Application Developers.

Libbi answered 7/9, 2008 at 12:55 Comment(0)
R
0

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

Ramsdell answered 18/12, 2019 at 15:18 Comment(1)
This worked for me, but used: Dism /online /Enable-Feature /FeatureName:NetFx3Cornice

© 2022 - 2024 — McMap. All rights reserved.