diff --git a/src/Privatezilla/Privatezilla/Settings/Privacy/InstalledApps.cs b/src/Privatezilla/Privatezilla/Settings/Privacy/InstalledApps.cs deleted file mode 100644 index a1bfa14..0000000 --- a/src/Privatezilla/Privatezilla/Settings/Privacy/InstalledApps.cs +++ /dev/null @@ -1,56 +0,0 @@ -using Microsoft.Win32; - -namespace Privatezilla.Setting.Privacy -{ - internal class InstalledApps : SettingBase - { - private const string InstalledKey = @"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager"; - private const int DesiredValue = 0; - - public override string ID() - { - return Properties.Resources.settingsPrivacyInstalledApps; - } - - public override string Info() - { - return Properties.Resources.settingsPrivacyInstalledAppsInfo.Replace("\\n", "\n"); - } - - public override bool CheckSetting() - { - - return !( - RegistryHelper.IntEquals(InstalledKey, "SilentInstalledAppsEnabled", DesiredValue) - ); - } - - public override bool DoSetting() - { - try - { - Registry.SetValue(InstalledKey, "SilentInstalledAppsEnabled", DesiredValue, RegistryValueKind.DWord); - return true; - } - catch - { } - - return false; - } - - - public override bool UndoSetting() - { - try - { - Registry.SetValue(InstalledKey, "SilentInstalledAppsEnabled", 1, RegistryValueKind.DWord); - return true; - } - catch - { } - - return false; - } - - } -} \ No newline at end of file