Use the following command with powershell on one of the domain controllers to get a csv list of user's and their SID.
Get-LocalUser | Select-Object Name, SID, Enabled, Description | Export-Csv -Path C:LocalUserSIDs.csv -NoTypeInformation
Use the following command with powershell on one of the domain controllers to get a csv list of user's and their SID.
Get-LocalUser | Select-Object Name, SID, Enabled, Description | Export-Csv -Path C:LocalUserSIDs.csv -NoTypeInformation