Tagged Questions
The serviceinstall tag has no wiki summary.
3
votes
1answer
299 views
With a Service install msi, Is there a way to force the installer to re-prompt the user if credentials were entered incorrectly
During install of a windows service (using class MyServiceInstaller : Installer, and ServiceInstaller and ServiceProcessInstaller) is there a way to force the installer to re-prompt the user for their ...
3
votes
1answer
555 views
Parameterise Service start option in WiX installer
I have a ServiceInstall component in a WiX installer where I have a requirement to either start auto or demand depending on parameters passed into the MSI.
So the Xml element in question is
...
2
votes
1answer
2k views
WiX ServiceInstall - setting the service to run as the current windows user
I am installing a Windows service using WiX. How can I make the service run in the context of Windows User that runs the installer?
1
vote
1answer
71 views
Installer OnCommitted question
I wrote an installer a bit back that installs a service that I wanted to start when the installer finished. I put the code to start the service in the OnCommitted method of the ServiceInstaller. I ...
0
votes
2answers
190 views
Wix Service Install DLL
I have custom action in Wix to install one of the services for my application.
<Custom Action='ManagedInstall' After="InstallFinalize"/>
<CustomAction Id="ManagedInstall"
...
0
votes
1answer
171 views
Perf counters not installing with service using ServiceInstall
I have an NT service that has some perf counters. When I deploy the service using installutil, the perf counters and the service install fine. When I deploy using my msi, that uses ServiceInstall, the ...
0
votes
1answer
1k views
WIX ServiceInstall - setting the service to run under the NetworkService account
I am trying to create a WIX installer to install my windows service to run under the NetworkService account and getting an Insufficient Priviledges error during the installation.
I found this post ...