Delete SuggestedApps.cs

This commit is contained in:
Belim 2020-09-20 19:24:44 +02:00 committed by GitHub
parent 7ac0d98820
commit 09f5935fb8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
}
}
}