From 4ce327eb6af542ed2916d649553e5e1ba5833882 Mon Sep 17 00:00:00 2001 From: Snowz <98007575+SnowzNZ@users.noreply.github.com> Date: Thu, 7 Sep 2023 00:01:18 +0200 Subject: [PATCH] win: fix disable recent apps revert #211, #248 Add missing space --- src/application/collections/windows.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/application/collections/windows.yaml b/src/application/collections/windows.yaml index d2514107..583c7699 100644 --- a/src/application/collections/windows.yaml +++ b/src/application/collections/windows.yaml @@ -2456,7 +2456,7 @@ actions: recommend: standard docs: https://admx.help/?Category=Windows_10_2016&Policy=Microsoft.Policies.EdgeUI::DisableRecentApps code: reg add "HKCU\Software\Policies\Microsoft\Windows\EdgeUI" /v "DisableRecentApps" /t REG_DWORD /d 1 /f - revertCode: reg add "HKCU\Software\Policies\Microsoft\Windows\EdgeUI" /v "DisableRecentApps" /t REG_DWORD /d 0/f + revertCode: reg add "HKCU\Software\Policies\Microsoft\Windows\EdgeUI" /v "DisableRecentApps" /t REG_DWORD /d 0 /f - name: Turn off backtracking recommend: standard