diff --git a/src/Privatezilla/Privatezilla/Settings/Privacy/SuggestedApps.cs b/src/Privatezilla/Privatezilla/Settings/Privacy/SuggestedApps.cs deleted file mode 100644 index 73985ea..0000000 --- a/src/Privatezilla/Privatezilla/Settings/Privacy/SuggestedApps.cs +++ /dev/null @@ -1,54 +0,0 @@ -using Microsoft.Win32; - -namespace Privatezilla.Setting.Privacy -{ - internal class SuggestedApps : SettingBase - { - private const string SuggestedKey = @"HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager"; - private const int DesiredValue = 0; - - public override string ID() - { - return Properties.Resources.settingsPrivacyBlockSuggestedApps; - } - - public override string Info() - { - return Properties.Resources.settingsPrivacyBlockSuggestedAppsInfo; - } - - public override bool CheckSetting() - { - return !( - RegistryHelper.IntEquals(SuggestedKey, "SubscribedContent-338388Enabled", DesiredValue) - ); - } - - public override bool DoSetting() - { - try - { - Registry.SetValue(SuggestedKey, "SubscribedContent-338388Enabled", DesiredValue, RegistryValueKind.DWord); - return true; - } - catch - { } - - return false; - } - - public override bool UndoSetting() - { - try - { - Registry.SetValue(SuggestedKey, "SubscribedContent-338388Enabled", 1 , RegistryValueKind.DWord); - return true; - } - catch - { } - - return false; - } - - } -} \ No newline at end of file