show/hide this revision's text 4 added 174 characters in body

Windows users and groups use security identifiers (SIDs).

A security identifier (SID) is a unique value of variable length that is used to identify a security principal or security group in Windows operating systems.

There is a list of predefined SIDs that Windows has built-in. Other SIDs are generated by combining the current computer's (randomly generated, 96-bit) SID with an incremented number.

SIDs of users that have accounts on a computer are stored in the registry under HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\ProfileList

Sample SIDs (taken from The Microsoft policy concerning disk duplication of Windows XP installations):

The following example displays the SIDs for four local user accounts. Note that only the last four digits are incremented as new accounts are added.

  • S-1-5-21-191058668-193157475-1542849698-500 Administrator
  • S-1-5-21-191058668-193157475-1542849698-1000 User 1
  • S-1-5-21-191058668-193157475-1542849698-1001 User 2
  • S-1-5-21-191058668-193157475-1542849698-1002 User 3

Because of how SIDs are generated, they should be unique. Since they are part of the windows profile system, roaming profiles should have the same SID on every system.

show/hide this revision's text 3 added 1 characters in body

Windows users and groups use security identifiers (SIDs).

A security identifier (SID) is a unique value of variable length that is used to identify a security principal or security group in Windows operating systems.

There is a list of predefined SIDs that Windows has built-in. Other SIDs are generated by combining the current computer's (randomly generated, 96-bit) SID with an incremented number.

You may wish to stick with generating GUIDs.

SIDs of users that have accounts on a computer are stored in the registry under HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\ProfileList

Sample SIDs (taken from The Microsoft policy concerning disk duplication of Windows XP installations):

The following example displays the SIDs for four local user accounts. Note that only the last four digits are incremented as new accounts are added.

  • S-1-5-21-191058668-193157475-1542849698-500 Administrator
  • S-1-5-21-191058668-193157475-1542849698-1000 User 1
  • S-1-5-21-191058668-193157475-1542849698-1001 User 2
  • S-1-5-21-191058668-193157475-1542849698-1002 User 3
show/hide this revision's text 2 added 153 characters in body

Windows users and groups use security identifiers (SIDs).

There is a list of predefined SIDs that Windows has built-in. Other SIDs are generated by combining the current computer's (randomly generated 96-bit) SID with an incremented number.

You may wish to stick with generating GUIDs.

SIDs of users that have accounts on a computer are stored in the registry under HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\ProfileList

Sample SIDs (taken from The Microsoft policy concerning disk duplication of Windows XP installations):

The following example displays the SIDs for four local user accounts. Note that only the last four digits are incremented as new accounts are added.

  • S-1-5-21-191058668-193157475-1542849698-500 Administrator
  • S-1-5-21-191058668-193157475-1542849698-1000 User 1
  • S-1-5-21-191058668-193157475-1542849698-1001 User 2
  • S-1-5-21-191058668-193157475-1542849698-1002 User 3
show/hide this revision's text 1