Tagged Questions
14
votes
10answers
19k views
How can I convert from a SID to an account name in C#
I have a C# application that scans a directory and gathers some information. I would like to display the account name for each file. I can do this on the local system by getting the SID for the ...
12
votes
2answers
7k views
Convert a username to a SID string in C#/.NET
There's a question about converting from a SID to an account name; there isn't one for the other way around.
How do you convert a username to a SID string, for example, to find out which HKEY_USERS ...
3
votes
1answer
2k views
ASP.NET - Get the Principal / Relative Identifier (RID) for a DirectoryEntry / SID
I am using Active Directory in a custom MembershipProvider class to authenticate users in an ASP.NET 2.0 intranet application and associate their sid with a profile for the application.
When the ...
3
votes
2answers
7k views
The best way to resolve display username by SID?
I read a list of SID from the registry, HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList.
How to resolve the display username (e.g. DOMAIN\user, BUILDIN\user) by a given ...
2
votes
2answers
757 views
Convert SID's to usernames/groups?
I'm looping through a network directory and trying to output the user/group names (permissions) associated with each file/folder. I'm getting the SID's back but I want the names like "group_test" and ...
2
votes
3answers
3k views
Get User SID From Logon ID (Windows XP and Up)
I have a Windows service that needs to access registry hives under HKEY_USERS when users log on, either locally or via Terminal Server. I'm using a WMI query on win32_logonsession to receive events ...
2
votes
1answer
1k views
get machine SID (including primary domain controller)
I need to get machine SID (not computer account's SID) in C#. Computer is specified be host name, it is't necessarily local computer and it can be domain computer or workgroup computer. I using this ...
1
vote
2answers
2k views
How to get the logon SID in c#
How does one retrieve the Windows Logon SID in c# .net? (not the user sid, but the unique new one for each session).
Thanks in advance,
0
votes
2answers
155 views
Convert SID to Username in C#
In .net, I can create a NTAccount using domain and username, and get it's SID.
But I cannot convert the SID back to NTAccount using translate function.
new ...
0
votes
1answer
233 views
How to convert hex sid to SDDL in c#?
I am doing an LDAP query to get the distinguesd name of a User , DN contains Guid and SID sections and SID section is HEX but I need in SDDL , How can I convert a hex sid to SDDL format ?