Is there any way to use a SID in the WinNT service provider like:
// doesn't work
using (DirectoryEntry groupEntry = new DirectoryEntry("WinNT://./<SID=S-1-5-32-544>,group"))
{
}
or do I need to convert the SID to the group name first?
(Using LDAP is not possible in my case)