Reputation: 622
I have a windows service. How do I install and start it using installshield 2010?
Upvotes: 2
Views: 7281
Reputation: 21
if it is an basic msi project you can create in component level
create a folder with component ,assigne your service.exe to the component. then go to component view\select assigned component\advancesettings\services .here you can create the service and also create events which you want to do like install-start
Upvotes: 1
Reputation: 440
InstallScript have the following functions ServiceAddService
and ServiceStartService
for your requirement.
Upvotes: 3