T
Totto
Hi,
Is possible to read from HKEY_LOCAL_MACHINE whithout beeing loged in as
administrator or power user?
Have tried using the following code, but if loged in as User there is a
security matter.
Dim regKey As RegistryKey = Registry.LocalMachine
Dim strCheckTime As String
regKey = regKey.CreateSubKey(SubKeyOPCProgid)
strCheckTime = regKey.GetValue("CheckTime", strCheckTime)
If it's not possible to read from LocalMachine withourt beeing loged in as
Administrator or power user, where is the right place to store app settings
available to all users ?
Tnx
Totto
Is possible to read from HKEY_LOCAL_MACHINE whithout beeing loged in as
administrator or power user?
Have tried using the following code, but if loged in as User there is a
security matter.
Dim regKey As RegistryKey = Registry.LocalMachine
Dim strCheckTime As String
regKey = regKey.CreateSubKey(SubKeyOPCProgid)
strCheckTime = regKey.GetValue("CheckTime", strCheckTime)
If it's not possible to read from LocalMachine withourt beeing loged in as
Administrator or power user, where is the right place to store app settings
available to all users ?
Tnx
Totto