The .NET Framework distributes with a set of IdentityReference classes. An IdentityReference is a reference to a valid Windows identity (which is computer, user accounts or Windows group) that is expressed through a SID. Every time when system administrator creates a user, a group, or he/she set up a new machine with Windows, he/she gets a worldwide unique SID assigned by the system. This SID is used for uniquely identifying system objects. When for example system administrator is adding a user to a group, a reference to the user in the form of a SID gets added to the group’s user list and to the user’s group list.

The .NET Framework includes three classes for SID reference in the System.Security.Principal namespace:

– IdentityReference – is an abstract base class for any class representing a SID and it is the base class for the next two classes.

– SecurityIdentifier – represents the real, unique code of a SID. The SID looks similar to a  Universally Unique ID (UUID).

– NTAccount –  represents the human-readable string for a SID.

Note: The IdentityReference base class defines a method called Translate that allows you to convert an existing IdentityReference instance from one type to another, such as the conversion from NTAccount to SecurityIdentifier.

 

You can use the next code lines to show the groups of the currently logged on Windows user account:

 

If TypeOf (User) Is WindowsPrincipal Then

‘ 1. Get general user information

Dim Principal As WindowsPrincipal = DirectCast(User, WindowsPrincipal)

Dim Identity As WindowsIdentity = DirectCast(Principal.Identity, WindowsIdentity)

 

‘ 2. Get the roles for the user

lblInfoText.Text += “<hr/>”

lblInfoText.Text += “<h2>Roles:</h2>”

 

For Each SIDRef As IdentityReference In Identity.Groups

lblInfoText.Text += “<br/>______________________”

 

‘ Get the system code for the SID

Dim Sid As SecurityIdentifier = DirectCast(SIDRef.Translate(GetType(SecurityIdentifier)), SecurityIdentifier)

lblInfoText.Text += “<br><b>SID (code): </b>”

‘You can use Value to access the SID code for the SecurityIdentifier

lblInfoText.Text += Sid.Value

 

‘ Get the human-readable SID

Dim Account As NTAccount = DirectCast(SIDRef.Translate(GetType(NTAccount)), NTAccount)

lblInfoText.Text += ”    <b>SID (human-readable): </b>”

‘You can use Value to access the readable name of the user or group for the NTAccount instancehe

lblInfoText.Text += Account.Value

Next

End If

The next picture shows the result:

 

Showing of the groups of the currently logged on Windows user account in VB.NET

Showing of the groups of the currently logged on Windows user account in VB.NET