我想以编程方式添加加载项/宏安全性的新路径
我知道它们应该存在于
中HKEY_LOCAL_MACHINE \ SOFTWARE \微软\ VisualStudio的\ 9.0 ???? \ AutomationOptions \ LookInFolders
但是我检查了我的注册并且不存在
即时通讯使用Windows 7 64位。 Visual Studio 2010 Ultimate。 C#
知道如何添加路径吗? ?我无法找到AutomationOptions \ LookInFolders在哪里,我不知道我是否应该添加它以及如何?
答案 0 :(得分:0)
Microsoft.Win32.RegistryKey key;
key =
Microsoft.Win32.Registry.LocalMachine.CreateSubKey(
@"SOFTWARE\Microsoft\VisualStudio\10.0\AutomationOptions");
if (key != null)
{
key = key.CreateSubKey(@"LookInFolders");
key.SetValue(Name,Path);
key.Close();
我解决了它