From 4ef0eb294990676c778f0e51a37db2166dba70dd Mon Sep 17 00:00:00 2001 From: Whatk Date: Mon, 16 Oct 2023 13:03:30 +0800 Subject: [PATCH] fix(rules): DisableSmartScreen maybe not work #11 feat(rules): disbale PersonalDataExport notice (2023/06/27) --- tweaks/OOBE/SetPersonalDataExportIsShow_230627.yaml | 13 +++++++++++++ tweaks/Security/DisableSmartScreen.yaml | 4 +++- version.json | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) create mode 100644 tweaks/OOBE/SetPersonalDataExportIsShow_230627.yaml diff --git a/tweaks/OOBE/SetPersonalDataExportIsShow_230627.yaml b/tweaks/OOBE/SetPersonalDataExportIsShow_230627.yaml new file mode 100644 index 0000000..88633e2 --- /dev/null +++ b/tweaks/OOBE/SetPersonalDataExportIsShow_230627.yaml @@ -0,0 +1,13 @@ +meta: + en: + name: Disable "Your data will be processed outside of your country or region" notice (Applicable for updates after June 27, 2023) + ref: https://support.microsoft.com/help/5028723 + zh: + name: 关闭”你的数据将在你所在的国家或地区之外进行处理“提示 (适用于 2023 年 6 月 27 日 后的更新) +applyDefaultUser: true +tweaks: + registry: + - key: 'HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\CloudExperienceHost\Intent\PersonalDataExport' + valueName: "PDEShown" + type: "REG_DWORD" + value: "2" diff --git a/tweaks/Security/DisableSmartScreen.yaml b/tweaks/Security/DisableSmartScreen.yaml index c2bdfb1..e8c75f0 100644 --- a/tweaks/Security/DisableSmartScreen.yaml +++ b/tweaks/Security/DisableSmartScreen.yaml @@ -1,10 +1,12 @@ meta: en: name: Disable SmartScreen + ref: https://admx.help/?Category=Windows_8.1_2012R2&Policy=Microsoft.Policies.WindowsExplorer::EnableSmartScreen zh: name: 禁用 SmartScreen tweaks: registry: - key: 'HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer' valueName: "SmartScreenEnabled" - action: delete + type: "REG_DWORD" + value: "0" diff --git a/version.json b/version.json index e4a8b76..1b1bbae 100644 --- a/version.json +++ b/version.json @@ -1,3 +1,3 @@ { - "version": "0.2.4" + "version": "0.2.5" }