From abfc5db2c362f96cbc057deab82d3114bf1f17a4 Mon Sep 17 00:00:00 2001 From: Jeffrey <9938813+Raphire@users.noreply.github.com> Date: Mon, 25 May 2026 14:35:39 +0200 Subject: [PATCH] Improve log output in Get.ps1 and clean up file exclusions --- Scripts/Get.ps1 | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/Scripts/Get.ps1 b/Scripts/Get.ps1 index 048d5b4..88d2f72 100644 --- a/Scripts/Get.ps1 +++ b/Scripts/Get.ps1 @@ -136,12 +136,12 @@ catch { Exit } -Write-Output "" -Write-Output "> Cleaning up old Win11Debloat folder..." - -# Remove old script folder if it exists, but keep config and log files +# Remove old script folder if it exists, but keep configs, logs and backups if (Test-Path $tempWorkPath) { - Get-ChildItem -Path $tempWorkPath -Exclude CustomAppsList,LastUsedSettings.json,Win11Debloat.log,Config,Logs,Backups | Remove-Item -Recurse -Force + Write-Output "" + Write-Output "> Cleaning up old Win11Debloat folder..." + + Get-ChildItem -Path $tempWorkPath -Exclude Config,Logs,Backups | Remove-Item -Recurse -Force } $configDir = Join-Path $tempWorkPath 'Config' @@ -149,6 +149,9 @@ $backupDir = Join-Path $tempWorkPath 'ConfigOld' # Temporarily move existing config files if they exist to prevent them from being overwritten by the new script files, will be moved back after the new script is unpacked if (Test-Path "$configDir") { + Write-Output "" + Write-Output "> Backing up existing config files..." + New-Item -ItemType Directory -Path "$backupDir" -Force | Out-Null $filesToKeep = @( @@ -179,6 +182,9 @@ if (Test-Path "$backupDir") { New-Item -ItemType Directory -Path "$configDir" -Force | Out-Null } + Write-Output "" + Write-Output "> Restoring existing config files..." + Get-ChildItem -Path "$backupDir" -Recurse | Move-Item -Destination "$configDir" Remove-Item "$backupDir" -Recurse -Force } @@ -219,13 +225,13 @@ if ($null -ne $debloatProcess) { $debloatProcess.WaitForExit() } -# Remove all remaining script files, except for CustomAppsList and LastUsedSettings.json files +# Remove all remaining script files, except for configs, logs and backups if (Test-Path $tempWorkPath) { Write-Output "" Write-Output "> Cleaning up..." # Cleanup, remove Win11Debloat directory - Get-ChildItem -Path $tempWorkPath -Exclude CustomAppsList,LastUsedSettings.json,Win11Debloat.log,Win11Debloat-Run.log,Config,Logs,Backups | Remove-Item -Recurse -Force + Get-ChildItem -Path $tempWorkPath -Exclude Config,Logs,Backups | Remove-Item -Recurse -Force } Write-Output ""