From 08fd0e3069dcccd30c1d23dd3ca65941e40fcf6b Mon Sep 17 00:00:00 2001
From: Manuel Thalmann <m@nuth.ch>
Date: Wed, 2 Aug 2023 12:56:40 +0200
Subject: [PATCH] Don't split resulting backup file

---
 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 51ce076c..fe2a0c2e 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", "-v4g"), $false);
+    $context.Backup($backupRoot, "$backupRoot.7z", @("-sdel"), $false);
     $context.Cleanup();
 }