PS HarriJaakkonen :~/Blog/Posts> cat ./find-user-with-certain-sid.html

Find a User with certain SID.

Hi,

Powershell is the way. Open powershell and type:

import-module activedirectory 

Then.

$strSID="Enter SID Here"

$uSid = "LDAP://<SID=$strSID>"


echo $uSid

Have a nice one,