Exemplo n.º 1
0
        public static RegistryKey CreateRegistryKey(WRegisterTool.WRegisterRootKeyType rootKeyType, string keyPath, string keyValueName, string keyValue)
        {
            RegistryKey registryKey = WRegisterTool.CreateRegistryKey(rootKeyType, keyPath);

            registryKey.SetValue(keyValueName, keyValue);
            return(registryKey);
        }
Exemplo n.º 2
0
        public static RegistryKey CreateRegistryKey(RegistryKey fatherKey, string keyPath, string keyValueName, string keyValue)
        {
            RegistryKey registryKey = WRegisterTool.CreateRegistryKey(fatherKey, keyPath);

            registryKey.SetValue(keyValueName, keyValue);
            return(registryKey);
        }
Exemplo n.º 3
0
        public static bool SetRegistryValue(WRegisterTool.WRegisterRootKeyType rootKeyType, string keyPath, string keyValueName, string keyValue)
        {
            RegistryKey registryKey = WRegisterTool.GetRegistryKey(rootKeyType, keyPath);

            registryKey.SetValue(keyValueName, keyValue);
            return(true);
        }
Exemplo n.º 4
0
 public static bool DeleteRegistryValue(RegistryKey key, string keyValueName)
 {
     if (WRegisterTool.IsKeyHaveValue(key, keyValueName))
     {
         key.DeleteValue(keyValueName);
         return(true);
     }
     return(false);
 }
Exemplo n.º 5
0
        public static string GetRegistryValue(WRegisterTool.WRegisterRootKeyType rootKeyType, string keyPath, string keyName)
        {
            RegistryKey registryKey = WRegisterTool.GetRegistryKey(rootKeyType, keyPath);

            if (WRegisterTool.IsKeyHaveValue(registryKey, keyName))
            {
                return(registryKey.GetValue(keyName).ToString());
            }
            return(null);
        }
Exemplo n.º 6
0
        public static bool DeleteRegistryValue(WRegisterTool.WRegisterRootKeyType rootKeyType, string keyPath, string keyValueName)
        {
            RegistryKey registryKey = WRegisterTool.GetRegistryKey(rootKeyType, keyPath);

            if (WRegisterTool.IsKeyHaveValue(registryKey, keyValueName))
            {
                registryKey.DeleteValue(keyValueName);
                return(true);
            }
            return(false);
        }
Exemplo n.º 7
0
        public static bool DeleteRegistryKey(WRegisterTool.WRegisterRootKeyType rootKeyType, string keyPath, string keyName)
        {
            RegistryKey rootRegisterKey = WRegisterTool.GetRootRegisterKey(rootKeyType);
            RegistryKey registryKey     = rootRegisterKey.OpenSubKey(keyPath);

            if (WRegisterTool.IsKeyHaveSubKey(registryKey, keyName))
            {
                registryKey.DeleteSubKey(keyName);
                return(true);
            }
            return(false);
        }
Exemplo n.º 8
0
        public static RegistryKey GetRegistryKey(WRegisterTool.WRegisterRootKeyType rootKeyType, string keyPath)
        {
            RegistryKey rootRegisterKey = WRegisterTool.GetRootRegisterKey(rootKeyType);

            return(rootRegisterKey.OpenSubKey(keyPath, true));
        }
Exemplo n.º 9
0
 public static RegistryKey CreateRegistryKey(WRegisterTool.WRegisterRootKeyType rootKeyType, string keyPath)
 {
     WRegisterTool.GetRootRegisterKey(rootKeyType);
     return(WRegisterTool.CreateRegistryKey(rootKeyType, keyPath));
 }