IRegistryClass.CurrentConfig

Syntax

CurrentConfig: IRegistryKey;

Description

The CurrentConfig property returns the key containing data about equipment profile used by local computer while starting up the system.

Example

Sub Main;

Var

RegKey: IRegistryKey;

Begin

RegKey := RegistryClass.CurrentConfig;

Debug.WriteLine(RegKey.Name);

End Sub Main;

After executing the example name of the key that contains data about equipment profile used by local computer while starting up the system is displayed in the console.

See also:

IRegistryClass