diff --git a/src/Privatezilla/Privatezilla/Settings/Apps/Documents.cs b/src/Privatezilla/Privatezilla/Settings/Apps/Documents.cs deleted file mode 100644 index 0e811d5..0000000 --- a/src/Privatezilla/Privatezilla/Settings/Apps/Documents.cs +++ /dev/null @@ -1,54 +0,0 @@ -using Microsoft.Win32; - -namespace Privatezilla.Setting.Apps -{ - internal class Documents: SettingBase - { - private const string AppKey = @"HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\documentsLibrary"; - private const string DesiredValue ="Deny"; - - public override string ID() - { - return Properties.Resources.settingsAppsDocuments; - } - - public override string Info() - { - return ""; - } - - public override bool CheckSetting() - { - return !( - RegistryHelper.StringEquals(AppKey, "Value", DesiredValue) - ); - } - - public override bool DoSetting() - { - try - { - Registry.SetValue(AppKey, "Value", DesiredValue, RegistryValueKind.String); - return true; - } - catch - { } - - return false; - } - - - public override bool UndoSetting() - { - try - { - Registry.SetValue(AppKey, "Value", "Allow", RegistryValueKind.String); - return true; - } - catch - { } - - return false; - } - } -} \ No newline at end of file