up vote 3 down vote favorite
1
share [g+] share [fb]

I've got a setup project for a Windows Service (.net 3.5, visual studio 2008).

The Windows Service needs to be run under the Administrator account, does anyone know how I can get the Setup Project to set the "user to log on as" setting for the windows service as part of the setup process?

At the moment I have to manually right click on the service and set it to log on as the administrator everytime I update the service.

Thanks!

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

You should be able to add a new ServiceProcessInstaller in the InitializeComponent() method of your installer. This class will allow you to set account type, username, and password that you want the service to run as. For example:

this.Installers.Add(
        new System.ServiceProcess.ServiceProcessInstaller()
            {
                Account = ServiceAccount.User,
                Username = @"domain\username",
                Password = "password"
            });

If you don't want to hardcode a password into your setup project, then leave it blank and a popup dialog should appear asking for this during install.

link|improve this answer
thanks! - do you know how to get the service to auto-start as well? – db1234 Nov 7 '09 at 11:46
No sorry, never had to do that before. I'd add it as another question if I was you. – Bermo Nov 7 '09 at 11:58
PrinterMonitorServiceInstaller.StartType = System.ServiceProcess.ServiceStartMode.Automatic this will do this – JKS Jun 30 '10 at 13:32
ServiceInstaller's StartType Property has options for service as "Automatic","Manual" and "Disabled"..this can be used to set service start mode.In my project i set it to automatic ,after installation in services list my service start property is automatic but not started immidiately after setup...how to also run service after setup?? – dankyy1 Jul 17 '10 at 16:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.