Search notes:

Registry: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths

The registry key HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths serves two main goals:
This key is also used to register and control the behavior of the system on behalf of applications.
This registry key is consulted when the WinAPI/Shell function ShellExecuteEx() is called to find the correct application.
Executables that are registered as subkeys under this key are able to be started with the start command of cmd.exe even though they are not in the PATH environemnt variable.
With Windows 7 and later, the recommended location is not under HKEY_LOCAL_MACHINE but rather under HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\App Paths.
By default, in a Windows 10 installation, this key contains the following subkeys:

See also

HKEY_CLASSES_ROOT\Applications
Registry: environment variables
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\App Paths

Links

Application Registration

Index