eriques
eriques

Reputation: 11

how to make a installer for .net

How to make an installer for windows .net?

Upvotes: 0

Views: 179

Answers (2)

Sam
Sam

Reputation: 2683

I would use this http://nsis.sourceforge.net/Main_Page to create the installer. (though there may be more suitable options for a .NET app)

The trial capability requirement should be coded into your app with your own logic, otherwise it can probably be broken by a simple system-restore operation.

Upvotes: 0

John Weldon
John Weldon

Reputation: 40759

Visual Studio can generate rudimentary installers. New Project ==> Other Project Types ==> Setup and Deployment

Deploying Applications on MSDN

Upvotes: 3

Related Questions