From 81b4b4c6cd9faa6a08ecfeb3062565d764be9a52 Mon Sep 17 00:00:00 2001 From: he3als <65787561+he3als@users.noreply.github.com> Date: Thu, 6 Jun 2024 14:38:53 +0100 Subject: [PATCH] fix: ignore errors on UCPD --- .../Configuration/tweaks/debloat/disable-scheduled-tasks.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/playbook/Configuration/tweaks/debloat/disable-scheduled-tasks.yml b/src/playbook/Configuration/tweaks/debloat/disable-scheduled-tasks.yml index afc6bb18ae..bd87c68202 100644 --- a/src/playbook/Configuration/tweaks/debloat/disable-scheduled-tasks.yml +++ b/src/playbook/Configuration/tweaks/debloat/disable-scheduled-tasks.yml @@ -9,8 +9,8 @@ actions: # Updates compatibility database - !scheduledTask: {path: '\Microsoft\Windows\Application Experience\PcaPatchDbTask', operation: disable} - # UCPD - - !scheduledTask: {path: '\Microsoft\Windows\AppxDeploymentClient\UCPD velocity', operation: disable} + # UCPD - might not exist on all installs, so ignore errors + - !scheduledTask: {path: '\Microsoft\Windows\AppxDeploymentClient\UCPD velocity', operation: disable, ignoreErrors: true} # ------------------------------------------------------------------------------------- # Here are the scheduled tasks that are currently commented as they're under review.