You need to install your service itself under a domain user account. This is done in the ServiceProcessInstaller, search for something like: this.serviceProcessInstaller1.Account = System.ServiceProcess.ServiceAccount.User; this.serviceProcessInstaller1.Username = "abcd@mydomain.com"; this.serviceProcessInstaller1.Password = "mypassword";
This would already be the working version. You probably have a ServiceAccount.System or something else. And null values as username and password. Try it this way.
-------------------- Bertram Weckmann www.svizzer.com --------------------