Link to home
Start Free TrialLog in
Avatar of ptrennum
ptrennum

asked on

How to use Wise InstallMaster 8.1?

I have a windows service application that I wrote in C++ and I want to make an installer app for the project.  I have a copy of Wise InstallMaster 8.1 but i have never used it.  Does anyone know of any resources or tutorials that could teach me how to use this software?

PT
Avatar of Axter
Axter
Flag of United States of America image

Hi ptrennum,
I highly recommend that you use INNO instead.
INNO is very easy to setup, and it has good help documents.
Furthermore, the install program it creates looks very professional.
It's a free program, and you can download it from the following site:

http://www.jrsoftware.org/

David Maisonave :-)
Cheers!
Avatar of ptrennum
ptrennum

ASKER

Thanks - I downloaded it and installed it but still looking at a brand new app which I've never seen before.  Is there a tutorial any where that would walk me through creating a first project?

PT
Hm, their KnowledgeBase isn't really too helpful: http://www.wise.com/KBArticle.aspx?articleno=966 ("HOWTO: Creating Services")

BTW; from my experience, the best thing is to have the installer place the files on the target system and then call a DLL that does the necessary SCM calls for you.
ASKER CERTIFIED SOLUTION
Avatar of Axter
Axter
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
I agree with jkr's last comment.

For the Service application that I created, I used CServiceHelper class which is pretty easy to use to install and uninstall a service.

http://www.codeproject.com/system/cservicehelper.asp

I use the above code, as the program that gets executed by INNO during installation.