posted on February 22, 2017
We have a feature request from a client that Audit Trail display the Windows Account in addition to the Authentication SID to help identify the user who logged in through a Windows account to a Laserfiche User.
Currently he is having to run this script to get the information. Would it be possible to include this, or something like this into Audit Trail?
$objSID = New-Object System.Security.Principal.SecurityIdentifier ("S-1-5-21-2338819846-3274857350-2339339167-2706")
$objUser = $objSID.Translate( [System.Security.Principal.NTAccount])
$objUser.Value
0
0