Umwandlung zwischen Kontoname und SID
Hole Konto
$Account = new-object system.security.principal.ntaccount("itv\hs")
Übersetze in SID
$SID = $Account.Translate([system.security.principal.securityidentifier]).value
$SID
Übersetze in Kontonamen
$Account = new-object system.security.principal.securityidentifier("S-1-5-32-544")
$Name = $Account.Translate([system.security.principal.ntaccount]).value
$Name