Is there a registry key that is allowed for write access for all users and is common to them?
I need to save some machine-related data in my application, but this piece of data should be machine-specific and not user-specific. HKEY_LOCAL_MACHINE is writable by the administrator only. HKEY_CURRENT_USER is writable but not shared with other users.
I think that in the Windows file system folder C: \ ProgramData (the% ALLUSERSPROFILE% environment variable) is writable by everyone and is public, but does it have something similar in the registry?
source
share