Tagged Questions

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 ...
12
votes
6answers
12k views

How can I get the SID of the current Windows account?

I am looking for an easy way to get the SID for the current Windows user account. I know I can do it through WMI, but I don't want to go that route. Apologies to everybody that answered in C# for not ...
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
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
4answers
848 views

Reset password for renamed Administrator account

I need to create a .VBS script to reset the Windows local administrator password on a large group of computers. My problem is that some of our sites have renamed the administrator account for ...
0
votes
1answer
120 views

How to fetch the user profile given a SID?

I need to fetch the user default profile directory, given its username or SID. How can I do it? GetUserProfileDirectory() seems to work only for the current account.
0
votes
1answer
337 views

How to obtain all the security identifiers (SID) that match a Windows user?

Using .NET, I would like to programmatically get a list of all the groups for which a Windows user is a member as well as all other SID (Security identifiers) that represent a logged in user. The ...