Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Install Dot net 4.5 silently as adependency

I have a setup that install silently but it has dependency of dot net framework 4.5, so how can i create a installer that installs dependency silently also.

   Setup is created in Install Shield and it is  a wpf application
like image 256
Anoop Mishra Avatar asked Jan 14 '15 12:01

Anoop Mishra


People also ask

Can I install .NET 4.5 Windows 10?

NET 4.5. 1 cannot be installed on Windows 10, only 4.6 and later. So if your application is incompatible with .

Why is .NET 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).

Do I need to install .NET framework for Visual Studio?

Starting with Visual Studio 2022, Visual Studio no longer includes . NET Framework components for . NET Framework 4.0 - 4.5. 1 because these versions are no longer supported.


1 Answers

It should be possible to use a command line like

dotNetFx45_Full_setup.exe /q /norestart

Use the web bootstrapper to download the Framework online

Maybe have a look here and here

Edit: Just see that you don't want to include .net 4.5 setup... Edit: Code fixed

like image 70
Eric Bole-Feysot Avatar answered Sep 28 '22 08:09

Eric Bole-Feysot