is there any way to make Silent installation to my C# program - on Visual-Studio 2008
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 n开发者_StackOverfloweed to press next->next...)
thanks in advance
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.
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.
精彩评论