From 1bf80bfd1914b171ac0c0685f11ac89d21cfda6e Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Tue, 1 Aug 2023 14:01:35 +0200 Subject: [PATCH] Disable the `-sdel` switch --- scripts/Windows/OS/Manage.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Windows/OS/Manage.ps1 b/scripts/Windows/OS/Manage.ps1 index fe2a0c2e..b3d2c044 100644 --- a/scripts/Windows/OS/Manage.ps1 +++ b/scripts/Windows/OS/Manage.ps1 @@ -10,7 +10,7 @@ function Backup-WindowsInstallation([Context] $context) { $backupRoot = $context.BackupRoot(); Backup-PersonalFiles $context; Backup-PersonalApps $context; - $context.Backup($backupRoot, "$backupRoot.7z", @("-sdel"), $false); + $context.Backup($backupRoot, "$backupRoot.7z", @(), $false); $context.Cleanup(); }