Multiple choice technology architecture

Which hive of the Registry is used by Windows Services to store their properties?

  1. HKEY_CURRENT_CONFIG

  2. HKEY_CURRENT_USER

  3. HKEY_LOCAL_MACHINE

  4. HKEY_USERS

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Windows Services store their configuration in the HKEY_LOCAL_MACHINE hive, specifically under the path HKLM\SYSTEM\CurrentControlSet\Services. This registry location contains service properties like display name, startup type, dependencies, and the path to the service executable. HKEY_CURRENT_USER and HKEY_USERS are user-specific hives, while HKEY_CURRENT_CONFIG stores hardware profiles.