Re: [WiX-users] OPTIONALLY start service after its been installed (Wix v3)

2007-09-19 Thread Rob Hamflett
If the option is given at the end of the install, you've missed your opportunity to let Windows Installer do it for you, so you're only option is to use a custom action. The command "sc start " should start the service, assumming you have the 'start a service' right, which isn't guaranteed.

[WiX-users] OPTIONALLY start service after its been installed (Wix v3)

2007-09-19 Thread Lewis G. Pringle, Jr.
I'm using the latest daily build of Wix v3. I have a windows service I'm installing, and I've found I can do: To install my service without starting at installation time, or: To get it to run automatically after installation. Next, I added a che