Install Shield Limited Edition WIndows service
Asked Answered
S

2

11

I was using the Visual Studio installer project for installing my product. Now it looks like the official approach is to use Install Shield Limited Edition project. Now I checked in the Limited Edition project type, and there does not appear to be a way to install windows service. Also the support for custom action also does not seem to be there. Am I missing something ?. Basically will I be able to do the following -

  1. Create a windows service installer project in Install Shield Limited Edition.
  2. Add custom actions - does not look like
  3. Silent installer.
Summitry answered 31/1, 2012 at 21:40 Comment(2)
has your problem sorted ??Chessman
possible duplicate of How do i create an InstallShield LE project to install a windows service?Shipp
F
9

Take a look at:

Augmenting InstallShield using Windows Installer XML - Windows Services

For the links to related posts. Basically LE is limited ( upgrade-ware ) but there are clean ways of extending it if you don't want to upgrade to Professional. ( $1500 )

LE always generates SETUP.EXE's ( MSI's compressed inside ) so silent installation is:

setup.exe /s /v"/qn"

Fewer answered 31/1, 2012 at 23:0 Comment(1)
I believe recent versions of ISLE now support native MSI service functionality without having to do this.Fewer
M
12

Install Shield limited edition can install windows services out of the box. Take a look at SO:How do i create an InstallShield LE project to install a windows service? to learn how.

Meleager answered 10/1, 2013 at 16:23 Comment(1)
There's a huge difference between native support and out of process support.Fewer
F
9

Take a look at:

Augmenting InstallShield using Windows Installer XML - Windows Services

For the links to related posts. Basically LE is limited ( upgrade-ware ) but there are clean ways of extending it if you don't want to upgrade to Professional. ( $1500 )

LE always generates SETUP.EXE's ( MSI's compressed inside ) so silent installation is:

setup.exe /s /v"/qn"

Fewer answered 31/1, 2012 at 23:0 Comment(1)
I believe recent versions of ISLE now support native MSI service functionality without having to do this.Fewer

© 2022 - 2024 — McMap. All rights reserved.