Get SID user list

1 min. readlast update: 12.01.2025

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

Was this article helpful?