Delete InstalledApps.cs

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

View file

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