executable - Install wizard for my windows form application - or not? -
I'm thinking of requiring an established wizard for my small Windows form application. There is no database access, only file on a shared network drive.
I have seen many times when executed in an email, copied to a desktop and used.
An 'installed wizard' is being used to set up an animation.
Is it needed or not?
And if I want to use one - what should my windows have been added to the form app?
If your app is actually just an .exe file, then it's probably ok to distribute it As for without an installer It would be better for more advanced users, because they do not have to worry about installing broken / unwanted ones - they can only be removed from the file and can be done with it.
On the other hand, most Windows users are used to work with installers, and are used to create shortcuts automatically on desktop or start-> programs, this is where An MMSI can really help. In addition, the use of an installer will usually put your application into the "Add or Remove Apps" control panel, which most people know how to use. Besides, if your app is just one. Exe file (such as many .dlls and resource files) is higher than you would probably want to use an .msi
Creating an installer is easy, see "Setup Projects" in Visual Studio.
Comments
Post a Comment