Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than advapi32, prefix the name with the module name and a period.
Declare Function LookupAccountSid Lib "advapi32.dll" _
Alias "LookupAccountSidA" ( _
ByVal systemName As String, _
ByVal psid As Byte(), _
ByVal accountName As String, _
ByRef cbAccount As Integer, _
ByVal domainName As String, _
ByRef cbDomainName As Integer, _
ByRef use As Integer) As Boolean
User-Defined Types:
None.
Notes:
The LookupAccountSid function attempts to find a name for the specified SID by first checking a list of well-known SIDs. If the supplied SID does not correspond to a well-known SID, the function checks built-in and administratively defined local accounts. Next, the function checks the primary domain. Security identifiers not recognized by the primary domain are checked against the trusted domains that correspond to their SID prefixes.
If the function cannot find an account name for the SID, the LookupAccountSid function fails and GetLastError returns ERROR_NONE_MAPPED. This can occur if a network time-out prevents the function from finding the name. It also occurs for SIDs that have no corresponding account name, such as a logon SID that identifies a logon session.
In addition to looking up SIDs for local accounts, local domain accounts, and explicitly trusted domain accounts, LookupAccountSid can look up SIDs for any account in any domain in the forest, including SIDs that appear only in the SIDhistory field of an account in the forest. The SIDhistory field stores former SIDs of an account that has been moved from another domain. To look up a SID, LookupAccountSid queries the global catalog of the forest.
Windows NT 4.0: Forest lookup and account lookup by SIDhistory are not supported.
Tips & Tricks:
Please add some!
Sample Code:
using System;
using System.Runtime.InteropServices;
using System.Text;
namespace test
{
class Class1
{
const int NO_ERROR = 0;
const int ERROR_INSUFFICIENT_BUFFER = 122;
[STAThread]
static void Main(string[] args)
{
StringBuilder name = new StringBuilder();
uint cchName = (uint)name.Capacity;
StringBuilder referencedDomainName = new StringBuilder();
uint cchReferencedDomainName = (uint)referencedDomainName.Capacity;
SID_NAME_USE sidUse;
// Sid for BUILTIN\Administrators
byte[] Sid = new byte[] {1,2,0,0,0,0,0,5,32,0,0,0,32,2};
int err = NO_ERROR;
if (!LookupAccountSid(null,Sid,name,ref cchName,referencedDomainName,ref cchReferencedDomainName,out sidUse))
{
err = System.Runtime.InteropServices.Marshal.GetLastWin32Error();
if (err == ERROR_INSUFFICIENT_BUFFER)
{
name.EnsureCapacity((int)cchName);
referencedDomainName.EnsureCapacity((int)cchReferencedDomainName);
err = NO_ERROR;
if (!LookupAccountSid(null,Sid,name,ref cchName,referencedDomainName,ref cchReferencedDomainName,out sidUse))
err = System.Runtime.InteropServices.Marshal.GetLastWin32Error();
}
}
if (err == 0)
Console.WriteLine(@"Found account {0} : {1}\{2}",sidUse,referencedDomainName.ToString(),name.ToString());
else
Console.WriteLine(@"Error : {0}",err);
}
}
}
VB.NET Example:
Private Shared Function MyLookupAccountSid(ByRef i_Sid() As Byte) As String
'Input format is the format returned from "ConvertStringSidToSid"
'Note; This function needs some work. For example, checking l_Result for error codes!
Dim result As String = ""
Try
'****************************************************************
'* Declares
'****************************************************************
Dim l_Result As Long
Dim l_use As Long
Dim l_UserName As String
Dim l_Domain As String
Dim l_UserNameLength As Integer = 0
Dim l_DomainLength As Integer = 0
'****************************************************************
'* First call, populate l_UserNameLength and l_DomainLength
'****************************************************************
'****************************************************************
'* Build result
'****************************************************************
result = l_Domain.Substring(0, l_DomainLength) & "\" & l_UserName.Substring(0, l_UserNameLength)
Catch ex As Exception
result = ""
End Try
Return result
End Function
Alternative Managed API:
Available in .Net 2.0:
using System.Security.Principal;
// convert the user sid to a domain\name
string account = new SecurityIdentifier(stringSid).Translate(typeof(NTAccount)).ToString();
But SecurityIdentifier.Translate() method works only on domain accounts so perhaps your computer not attached to domain. To resolve local SIDs into account name you can use Win32 API function LookupAccountSid().
The LookupAccountSid function accepts a security identifier (SID) as input. It retrieves the name of the account for this SID and the name of the first domain on which this SID is found.
11/3/2021 5:20:23 AM - -62.91.108.152
The LookupAccountSid function accepts a security identifier (SID) as input. It retrieves the name of the account for this SID and the name of the first domain on which this SID is found.
11/3/2021 5:20:23 AM - -62.91.108.152
The SID_IDENTIFIER_AUTHORITY structure represents the top-level authority of a security identifier (SID).
5/28/2007 2:31:00 PM - -209.87.228.158
The LookupAccountSid function accepts a security identifier (SID) as input. It retrieves the name of the account for this SID and the name of the first domain on which this SID is found.
11/3/2021 5:20:23 AM - -62.91.108.152
The SID_IDENTIFIER_AUTHORITY structure represents the top-level authority of a security identifier (SID).
5/28/2007 2:31:00 PM - -209.87.228.158
The SID_IDENTIFIER_AUTHORITY structure represents the top-level authority of a security identifier (SID).
5/28/2007 2:31:00 PM - -209.87.228.158
The LookupAccountSid function accepts a security identifier (SID) as input. It retrieves the name of the account for this SID and the name of the first domain on which this SID is found.
11/3/2021 5:20:23 AM - -62.91.108.152
The SID_IDENTIFIER_AUTHORITY structure represents the top-level authority of a security identifier (SID).
5/28/2007 2:31:00 PM - -209.87.228.158
The SID_IDENTIFIER_AUTHORITY structure represents the top-level authority of a security identifier (SID).
5/28/2007 2:31:00 PM - -209.87.228.158
The SID_IDENTIFIER_AUTHORITY structure represents the top-level authority of a security identifier (SID).
5/28/2007 2:31:00 PM - -209.87.228.158
The LookupAccountSid function accepts a security identifier (SID) as input. It retrieves the name of the account for this SID and the name of the first domain on which this SID is found.
11/3/2021 5:20:23 AM - -62.91.108.152
The SID_IDENTIFIER_AUTHORITY structure represents the top-level authority of a security identifier (SID).
5/28/2007 2:31:00 PM - -209.87.228.158
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).