Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Given a service name, I would like to retrieve the username that it runs under (i.e. the username shown in the 'Log On' tab of a service's properties window). There doesn't appear to be anything in the ServiceController class to retrieve this basic information. Nothing else in System.ServiceProcess looks like it exposes this information either. Is there a managed solution to this, or am I going to have to drop down into something lower-level?

share|improve this question

3 Answers

up vote 5 down vote accepted

Using WMI, with the System.Management you can try the following code:

using System;
namespace WindowsServiceTest
{
    class Program
    {
        static void Main(string[] args)
        {
            System.Management.SelectQuery sQuery = new System.Management.SelectQuery(string.Format("select name, startname from Win32_Service")); // where name = '{0}'", "MCShield.exe"));
            using (System.Management.ManagementObjectSearcher mgmtSearcher  = new System.Management.ManagementObjectSearcher(sQuery))
            {
                foreach (System.Management.ManagementObject service in mgmtSearcher.Get())
                {
                    string servicelogondetails =
                        string.Format("Name: {0} ,  Logon : {1} ", service["Name"].ToString(), service["startname"]).ToString();
                    Console.WriteLine(servicelogondetails);
                }
            }
            Console.ReadLine();
        }
    }
}

You can then later substitute the commented code with your service name, and it should only return the instances of your service process that is running.

share|improve this answer
Haven't tried it yet, but this looks like a winner! Thanks! – Pwninstein Jul 1 '10 at 2:57

WMI is your friend. Look at Win32_Service, specifically the StartName property. You can access WMI from C# via the System.Management.ManagementClass.

If you've not used WMI before, this article seems to be quite a good tutorial.

share|improve this answer
Thanks! 15chars – Pwninstein Jul 1 '10 at 2:56

Try this:

System.Security.Principal.WindowsIdentity.GetCurrent();

but the most obvious you will get LOCAL SYSTEM or NETWORK. The reason that you cannot show this user - that service can manage multiple users (shared by desktop, attached to current windows session, using shared resource ...) System starts service, but any user can use it.

share|improve this answer
Then you can get the Name property of the WindowsIdentity object returned from the above command. – ewall Jun 29 '10 at 14:26
1  
-1 This returns the WindowsIdentity of the current user, not of a specified service. – Pwninstein Jun 29 '10 at 14:31
@Pwninstein as usual service is started from SYSTEM or NETWORK credentials - not from "logged in" users. See my edits about this. So clarify you want get system account that starts service (my answer is correct about this) or current logged-in user list, that could use this service? – Dewfy Jun 29 '10 at 14:37
Usually services run as Local System or Network Service, but you can install a service to run under a standard user account (which we do in the project I'm working on). – Pwninstein Jun 29 '10 at 15:10
@Pwninstein - in this case you will get correct from GetCurrent() – Dewfy Jun 30 '10 at 10:20
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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