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 name of the key that contains settings of all workstation users' profiles is displayed in the console.

See also:

IRegistryClass