Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

.NET Framework 4 installation in silent mode [closed]

Tags:

Can anyone explain how to make silent (without any user interface) install of .NET 4? It looks like .NET installer ignores any switches from this article and show interface always. .NET Framework 4 installer is packed by NSIS.

like image 982
Paval Avatar asked Dec 16 '11 12:12

Paval


People also ask

Why is net framework taking forever to install?

NET Framework 4 require a complete regeneration of the Native Image Cache, a very time-consuming operation. For some computers, an interaction with previously installed Native Images may cause Native Image regeneration to take much longer than expected.

How do I fix net framework not installing?

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. If the error persits, we will have to force the installation with the Windows command prompt (CMD).

What does installing silently mean?

A silent install is when an application or program is loaded to a user's computer without any dialogs or user input after starting. This means once the installation starts, the user is not offered any options to change or edit the installation process.

How do I install a program silently?

As you want to install the software silently, find the switch available for silent installation. Use this command to use the silent switch: "softwarename.exe /switch". Once you are done with the silent switch command, sit back and relax. Your software will get installed automatically.


2 Answers

dotnetfx40x86.exe /q 

should do the trick.

.NET Framework Deployment Guide for Developers

like image 112
Davide Piras Avatar answered Sep 17 '22 14:09

Davide Piras


It may not be picking up your locale, try:

dotNetFx40_Full_setup.exe /q /norestart /LCID xxxx 

But as Mr. Piras says, look at the MS guide

like image 27
jolySoft Avatar answered Sep 18 '22 14:09

jolySoft