From 909c44d72a4a602ee8f27d06b6ec706c1e432ce1 Mon Sep 17 00:00:00 2001 From: undergroundwires Date: Mon, 13 Jul 2020 14:38:21 +0100 Subject: [PATCH] updated to may 2020 update --- src/application/application.yaml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/application/application.yaml b/src/application/application.yaml index ec7b02c0..ed096655 100644 --- a/src/application/application.yaml +++ b/src/application/application.yaml @@ -382,6 +382,10 @@ actions: code: |- reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Device Metadata" /v "PreventDeviceMetadataFromNetwork" /t REG_DWORD /d 1 /f reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Device Metadata" /v "PreventDeviceMetadataFromNetwork" /t REG_DWORD /d 1 /f + - + name: Disable active prompting (pings to MSFT NCSI server) + recommend: false + code: reg add "HKLM\SYSTEM\CurrentControlSet\Services\NlaSvc\Parameters\Internet" /v "EnableActiveProbing" /t REG_DWORD /d "0" /f - name: Opt out from Windows privacy consent recommend: true @@ -547,7 +551,6 @@ actions: name: Deny app access to text/mms recommend: true code: reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\DeviceAccess\Global\{992AFA70-6F47-4148-B3E9-3003349C1548}" /t REG_SZ /v "Value" /d DENY /f - - name: Deny location access recommend: true @@ -1143,7 +1146,11 @@ actions: - name: Disable Windows Defender recommend: false - code: reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender" /v DisableAntiSpyware /t REG_DWORD /d 1 /f + code: | + netsh advfirewall set allprofiles state off + reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender" /v DisableAntiSpyware /t REG_DWORD /d 1 /f + reg add "HKLM\SYSTEM\CurrentControlSet\Services\MpsSvc" /v "Start" /t REG_DWORD /d 4 /f + reg add "HKLM\SYSTEM\CurrentControlSet\Services\WinDefend" /v "Start" /t REG_DWORD /d 4 /f - name: Disable Smart Screen recommend: false