Tagged Questions
The service-installer tag has no wiki summary.
3
votes
1answer
295 views
Multiple services in one assembly. How installer knows which service to install and start?
I have a project which includes 2 windows services. I create a ProjectInstaller to install these items, which works fine. But I have a question; given the code defined below, how does the project ...
2
votes
2answers
321 views
Can wix prompt for a windows service username/password?
I am using Wix to install a windows service. The service will need to run under a non system/service account that is set up by the user.
Is it possible to have it prompt for the username/password ...
1
vote
2answers
36 views
Can't see my service installer when trying to Install a Windows Service
I wrote a Windows Service in c# (VS2008) and now trying to install it (My project's name is MyProject).
I am following the steps on the article ...
1
vote
1answer
236 views
Adding a service installer and service process installer in visual studio
For some reason, after adding a Installer class to my Windows Service project, I open it up in design mode and right click, but there is no option to add either a service installer or a service ...
0
votes
1answer
248 views
TransactedInstaller vs. nested Installer
Is there an difference between this (nested Installer)
ServiceInstaller si = new ServiceInstaller();
si.ServiceName = "MyService";
ServiceProcessInstaller spi = new ServiceProcessInstaller();
...
0
votes
1answer
1k views
Visual Studio missing “Add Installer” link in service project
I'm building a Windows service and following this MSDN article, but I'm stuck on step 3 under "Create an installer". I can't find the "Add Installer" link it's referring to. I've clicked everywhere, ...