Create a silent installer

I have a .NET application and I create my installer using the MS VS 2010 installation template. I want my installation to be silent. For this purpose I used a batch file with the following context:

start setup.exe /quiet 

and everything is fine when the target PC already has .NET. But if there is no .NET on the target PC, my installation detects this and starts the .NET installation, but in normal mode (not silent mode).

How can I configure it in silent mode.

+4
source share
1 answer

You can easily install the redistributable .NET package. See this link for a NET2 example. I am sure that later versions will be similar.

I'm not sure that you can override the behavior of the boot tape for Visual Studio to be distributed, but you can always write your own batch file to complete the installation.

+3
source

Source: https://habr.com/ru/post/1393331/


All Articles