diff --git a/src/playbook/Configuration/tweaks.yml b/src/playbook/Configuration/tweaks.yml index 68ea47dde2..bef06a3f03 100644 --- a/src/playbook/Configuration/tweaks.yml +++ b/src/playbook/Configuration/tweaks.yml @@ -166,6 +166,7 @@ actions: - !task: {path: 'tweaks\qol\disable-win11-settings-banner.yml'} - !task: {path: 'tweaks\qol\disable-screen-capture-hotkey.yml', option: 'remove-snipping-tool'} - !task: {path: 'tweaks\qol\disable-dynamic-lighting.yml'} + - !task: {path: 'tweaks\qol\disable-auto-app-archival.yml'} # -------------------------------------------------------------------------- # # qol\appearance # diff --git a/src/playbook/Configuration/tweaks/qol/disable-auto-app-archival.yml b/src/playbook/Configuration/tweaks/qol/disable-auto-app-archival.yml new file mode 100644 index 0000000000..798cd6c85e --- /dev/null +++ b/src/playbook/Configuration/tweaks/qol/disable-auto-app-archival.yml @@ -0,0 +1,8 @@ +--- +title: Disable Automatic Store App Archiving +description: Disables automatic Store app archiving so that less commonly apps don't disappear and have to be redownloaded +actions: + - !cmd: + command: 'reg import "AtlasDesktop\3. General Configuration\Store App Archiving\Disable Store App Archiving (default).reg"' + exeDir: true + wait: true diff --git a/src/playbook/Executables/AtlasDesktop/3. General Configuration/Store App Archiving/Disable Store App Archiving (default).reg b/src/playbook/Executables/AtlasDesktop/3. General Configuration/Store App Archiving/Disable Store App Archiving (default).reg new file mode 100644 index 0000000000..a02a1573f5 --- /dev/null +++ b/src/playbook/Executables/AtlasDesktop/3. General Configuration/Store App Archiving/Disable Store App Archiving (default).reg @@ -0,0 +1,4 @@ +Windows Registry Editor Version 5.00 + +[HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows\Appx] +"AllowAutomaticAppArchiving"=dword:00000000 diff --git a/src/playbook/Executables/AtlasDesktop/3. General Configuration/Store App Archiving/Enable Store App Archiving.reg b/src/playbook/Executables/AtlasDesktop/3. General Configuration/Store App Archiving/Enable Store App Archiving.reg new file mode 100644 index 0000000000..c55c473384 --- /dev/null +++ b/src/playbook/Executables/AtlasDesktop/3. General Configuration/Store App Archiving/Enable Store App Archiving.reg @@ -0,0 +1,4 @@ +Windows Registry Editor Version 5.00 + +[HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows\Appx] +"AllowAutomaticAppArchiving"=dword:00000001