How to write in registry under limited user account

  • Thread starter Thread starter Kriso
  • Start date Start date
K

Kriso

Is it possible to write information in HKLM\Software\MyApplication when
under limited user account ? I tried use
"System.Security.Permissions.RegistryPermission" but it doesn't work.
 
for a limited user account use
HKEY_CURRENT_USER\Software\MyApplication instead of
HKEY_LOCAL_MACHINE\Software\MyApplication
 
Back
Top