admin 管理员组

文章数量: 887032

项目 - 属性 - 安全性,“使用ClickOnce”,修改app.mainfest,再取消“使用ClickOnce”


【另有一篇参考文章:http://blog.csdn/wonsoft/article/details/6598407】

    在XP/2003下调试得好好的程序,到了windows7下,却抛出“不允许所请求的注册表访问权”的异常,该异常就在读写注册表时引发,例:

view plain
  1. public class Program  
  2.     {  
  3.         public static void SetAutoRun(string keyName, string filePath)  
  4.         {  
  5.             using (RegistryKey runKey = Registry.LocalMachine.OpenSubKey(@"software\microsoft\windows\currentversion\run"true))  
  6.             {  
  7.                 runKey.SetValue(keyName, filePath);  
  8.                 runKey.Close();  
  9.             }  
  10.         }  
  11.   
  12.         static 

本文标签: 注册表 不允许 解决办法 抛出 Windows