From 7fc4a1fba077b00437025d3af5304ae7efeb05be Mon Sep 17 00:00:00 2001 From: Raphire <9938813+Raphire@users.noreply.github.com> Date: Mon, 14 Apr 2025 21:02:58 +0200 Subject: [PATCH] Show path of saved CustomAppsList file after creation --- README.md | 2 +- Win11Debloat.ps1 | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index aa62727..91486a6 100644 --- a/README.md +++ b/README.md @@ -305,7 +305,7 @@ The quick and advanced usage methods support switch parameters. A table of all t | -RunSavedSettings | Run the script with the saved custom settings from last time. These settings are saved to and read from the `SavedSettings` file in the root folder of the script. | | -RemoveApps | Remove the default selection of bloatware apps. | | -RemoveAppsCustom | Remove all apps specified in the 'CustomAppsList' file. IMPORTANT: You can generate your custom list by running the script with the `-RunAppConfigurator` parameter. No apps will be removed if this file does not exist! | -| -RunAppConfigurator | Run the app configurator to generate a list of apps to remove, the list is saved to the 'CustomAppsList' file. Running the script with the `-RemoveAppsCustom` parameter will remove the selected apps. | +| -RunAppConfigurator | Run the app configurator to generate a list of apps to remove, the list is saved to the 'CustomAppsList' file inside the root folder of the script. Running the script with the `-RemoveAppsCustom` parameter will remove the selected apps. | | -RemoveCommApps | Remove the Mail, Calendar, and People apps. | | -RemoveW11Outlook | Remove the new Outlook for Windows app. | | -RemoveDevApps | Remove developer-related apps such as Remote Desktop, DevHome and Power Automate. | diff --git a/Win11Debloat.ps1 b/Win11Debloat.ps1 index 6132d74..e7ed79e 100644 --- a/Win11Debloat.ps1 +++ b/Win11Debloat.ps1 @@ -1171,7 +1171,8 @@ if ($RunAppConfigurator) { Write-Host "App configurator was closed without saving." -ForegroundColor Red } else { - Write-Output "Your app selection was saved to the 'CustomAppsList' file in the root folder of the script." + Write-Output "Your app selection was saved to the 'CustomAppsList' file, found at:" + Write-Host "$PSScriptRoot" -ForegroundColor Yellow } AwaitKeyToExit