Object SID (WinNT Provider)
The user security identifier (SID) can be retrieved using the objectSID attribute. The objectSID is returned as a VARIANT array of characters that form the SID string.
Example Code
sid = usr.Get("objectSID")
For i = LBound(sid) To UBound(sid)
Debug.Print sid(i)
Next