Click here to Skip to main content
Click here to Skip to main content

Retrieving Logged In User Name using a Windows Service

By , 8 Jul 2005
 

Introduction

This is a small Windows service program which retrieves the username of the currently logged in user. There might arise some situations when you need to have this information through a Windows service. If we use traditional API functions like GetUserName or GetUserNameEx, they simply return the user name of the process account under which that Windows service is running. It is the SYSTEM account in most cases. The above mentioned API functions always return SYSTEM as the currently logged in user.

Main Idea

To over come this problem, we can use Windows Management Instrumentation (WMI) classes. The main idea is that we get the username of the Explorer process under which it is running. And we know that the Explorer process is always running under the account with which the current user has been logged in.

To use this code you need to download a WMI plug-in from here. It will install WMI extensions for Visual Studio .NET 2003 Server Explorer. Now follow the steps as mentioned:

Steps

  1. Create a Windows Service project using VB.NET.
  2. Open Server Explorer and expand the tree node which says Management Classes.
  3. Right click on Processes node and select "Generate Managed Class". This will add a reference to the System.Management namespace.
  4. Now import System.Management namespace in your project (Service1.vb).
  5. In the OnStart procedure, add the following code:
    Dim mc As New ManagementClass("Win32_Process")
    Dim moc As ManagementObjectCollection = mc.GetInstances
    Dim mo As ManagementObject
    Dim processDomain, processUser As String
    
     For Each mo In moc
    
         Dim p As New ROOT.CIMV2.Process(mo)
         p.GetOwner(processDomain, processUser)
    
           If (p.Name.Trim = "explorer.exe") Then
              Return processUser
              Exit For
           End If
      
     Next

The simple explanation of the above code is that it loops through all the running processes on the system and as it finds the "explorer.exe" process, it returns its username. And this is the username of the currently logged in user as well.

You can print this user name in a file by adding the following code:

Dim myFile As New _
  System.Diagnostics.TextWriterTraceListener("C:\UserName.txt")

Trace.Listeners.Add(myFile)

myFile.WriteLine(processUser)

Install the Windows service using InstallUtil and run and test it. For this purpose, read other articles on how to install and run a Windows service.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Baber Saeed
Web Developer
Pakistan Pakistan
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 1memberant14887 Mar '13 - 3:59 
GeneralMy vote of 1memberFidoDildo11 Jan '12 - 4:24 
GeneralMy vote of 1memberAnton Lesnichenko13 Jul '11 - 5:03 
GeneralHere's how to do this in C/C++memberBigBenF102417 Oct '08 - 10:19 
GeneralRe: Here's how to do this in C/C++memberant14888 Mar '13 - 0:13 
GeneralTry This to get current logged on user using windows service in c#memberpramodgupta2413 Jul '08 - 20:12 
GeneralRe: Try This to get current logged on user using windows service in c#memberVINOTHKUMAR.R5 Aug '08 - 5:07 
GeneralRe: Try This to get current logged on user using windows service in c#memberBart_Rennes23 Feb '10 - 6:42 
GeneralNot 100% accuratemembernetikus31 Mar '08 - 6:21 
GeneralRetrieving current logged-in username from windows serivce in VC++2005memberanumadhu10 Apr '07 - 1:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 8 Jul 2005
Article Copyright 2005 by Baber Saeed
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid