IRegistryClass.Users

Syntax

Users: IRegistryKey;

Description

The Users property returns the key containing settings of all computer's users profiles.

Example

Sub Main;
Var
    RegKey: IRegistryKey;
Begin
    RegKey := RegistryClass.Users;
    Debug.WriteLine(RegKey.Name);
End Sub Main;

After executing the example the console displays name of the key that contains settings of all workstation users' profiles.

See also:

IRegistryClass