How to make a silent installer
C#
3
Posts
3
Posters
0
Views
1
Watching
-
How do i make an msi project in visual studio .net be a silent install all the time?
-
How do i make an msi project in visual studio .net be a silent install all the time?
It's not done in the project, but in the command line that launches the msiexec processor that runs your .MSI install. An .MSI is a database, not an application.
msiexec /q /i myApp.msi
RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome
-
It's not done in the project, but in the command line that launches the msiexec processor that runs your .MSI install. An .MSI is a database, not an application.
msiexec /q /i myApp.msi
RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome