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 SID string in C#?
|
feedback
|
|
The Win32 API function
MSDN Ref. Here's the P/Invoke reference (with sample code): http://www.pinvoke.net/default.aspx/advapi32.LookupAccountSid | |||||
|
feedback
|
|
Just found it on the pinvoke.net. Alternative Managed API: Available in .Net 2.0:
| |||
feedback
|