Powershell - SID to USER and USER to SID
SID to Domain UserThis will allow you to enter a SID and find the Domain User
$objSID = New-Object System.Security.Principal.SecurityIdentifier `
("ENTER-SID-HERE")
$objUser = $objSID.Translate( )
$objUser.Value
页:
[1]