Registry Permissions

  • Thread starter Thread starter Frank
  • Start date Start date
F

Frank

Hello!

Does anybody know how to get and set the permissions of a registry key using C#?

Thank you
Frank
 
Hi Frank,

Use RegistryPermission class (System.Security.Permission) :

RegistryPermission regPerm = new RegistryPermission
(RegistryPermissionAccess.Read, "HKEY_LOCAL_MACHINE\\HARDWARE...");

Regards,
Peter
(http://blog.jausovec.net)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top