Reputation: 14953
is there any way to make Silent installation to my C# program - on Visual-Studio 2008
(i mean that i dont want that when the user install my program he will need to press next->next...)
thanks in advance
Upvotes: 1
Views: 1427
Reputation: 35696
If you make a normal Visual Studio Deployment Project the msi
can be installed silently if you pass the right command line parameters, I believe /passive
is the one you are after.
Upvotes: 1
Reputation: 5119
Yip, it's called clickOnce :-)
http://msdn.microsoft.com/en-us/library/wh45kb66.aspx
In solution explorer right click your Windows Presentation Foundation, Windows Forms, or console application, click publish and follow the steps, it's as easy as that.
Upvotes: 0