Find SID

Aus Wiki-WebPerfect
Wechseln zu: Navigation, Suche

Show all SIDs

wmic useraccount get name,sid


Show SID of a specified user

wmic useraccount where name="<Username>" get sid


Find Username with SID

wmic useraccount where sid="<SID>" get name