I
Isky
Hello,
i have the problem to convert the sid i get with the following code in
the name of the group..
I need to get for example "group_test" and not "S-1-5-32-544"
The code i use is
---
Dim irc As IdentityReferenceCollection
Dim ir As IdentityReference
irc = Principal.WindowsIdentity.GetCurrent.Groups
For Each ir In irc
Response.Write(ir.Value)
Next
i have the problem to convert the sid i get with the following code in
the name of the group..
I need to get for example "group_test" and not "S-1-5-32-544"
The code i use is
---
Dim irc As IdentityReferenceCollection
Dim ir As IdentityReference
irc = Principal.WindowsIdentity.GetCurrent.Groups
For Each ir In irc
Response.Write(ir.Value)
Next