From cd0d55d70741329ad1647c88b48505a179400e68 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Tue, 1 Aug 2023 19:01:12 +0200 Subject: [PATCH] Split resulting archive --- 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..88de9fa8 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", @("-sdel")); $context.Cleanup(); }