public static void SetInstallPath(string installPath) { RegistryManager.SetValue <string>(RegPathDefault, RegKeyInstallPath, installPath, RegistryValueKind.String); }
public static string GetInstallPath(string installPath) { return(RegistryManager.GetValue <string>(RegPathDefault, RegKeyInstallPath, RegistryValueKind.String)); }
public static void SetSupportRTL(DWORD value) { RegistryManager.SetValue(RegPathDefault, RegKeyIsLanguageRTL, value, RegistryValueKind.DWord); }
public static void SetLanguage(string language) { RegistryManager.SetValue <string>(RegPathDefault, RegKeyLanguage, language, RegistryValueKind.String); }
public static string GetCommandArguments() { return(RegistryManager.GetValue <string>(RegPathDefault, RegKeyCmdArgs, RegistryValueKind.String)); }
public static void SetCommandArguments(string args) { RegistryManager.SetValue <string>(RegPathDefault, RegKeyCmdArgs, args, RegistryValueKind.String); }
public static void CreateSettingRegistryKey() { RegistryManager.CreateKey(RegPathDefault); }