Convert SID to Group Using Powershell

PS C:\Windows\system32> $SID = New-Object System.Security.Principal.SecurityIdentifier("S-1-5-21-3331414065-2088522717-2563937559-513")
PS C:\Windows\system32> $User = $SID.Translate([System.Security.Principal.NTAccount])
PS C:\Windows\system32> $User.Value
ookie\None

Leave a Reply