Click here to Skip to main content
15,896,063 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to deploy my program written in C++. I've taken a look at the InstallShield and Wise Installer . I want to make sure that it allow me some features like licencing and the ability to check/download updates.Wich one you advise me to choose?
Posted
Comments
[no name] 23-Aug-12 11:46am    
AFAIK no matter what package you pick the licensing aspect is up to you. The auto-update feature is not part of a setup creator that I have ever seen. That has always been implemented by the software developer.

I don't think you're going to get everything you want, in one package.

The two installers you mention allow you to add additional code, that will be executed as part of the installation process.

This will include verification checks before the install, and post verification checks to verify the install after it is complete. In the pre-install verification, you could ask for a license key and verify it.

Auto-Update software will likely just download the installer from an internet source and run it in a process separate from the main program.
 
Share this answer
 
InstallShield is pretty powerful but has gotten relatively expensive lately, try an open source alternative, InnoSetup[^], it has a pretty powerful scripting engine so it should be pretty flexible.
 
Share this answer
 
v2
Comments
Jibesh 11-Feb-13 20:47pm    
ooops check your link.. its not working.
Albert Holguin 11-Feb-13 20:52pm    
ooops, thanks... I'll fix it
For Windows packages you can use WiX which is free.
WiX Toolset[^]
WiX Tutorial[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900