diff --git a/Appslist.txt b/Appslist.txt index 16991b0..d9acf39 100644 --- a/Appslist.txt +++ b/Appslist.txt @@ -137,3 +137,23 @@ XING #Microsoft.windowscommunicationsapps # Mail & Calendar #Microsoft.XboxGameOverlay # Game overlay, required/useful for some games #Microsoft.XboxGamingOverlay # Game overlay, required/useful for some games +#AD2F1837.HPAIExperienceCenter +#AD2F1837.HPConnectedMusic +#AD2F1837.HPConnectedPhotopoweredbySnapfish +#AD2F1837.HPDesktopSupportUtilities +#AD2F1837.HPEasyClean +#AD2F1837.HPFileViewer +#AD2F1837.HPJumpStarts +#AD2F1837.HPPCHardwareDiagnosticsWindows +#AD2F1837.HPPowerManager +#AD2F1837.HPPrinterControl +#AD2F1837.HPPrivacySettings +#AD2F1837.HPQuickDrop +#AD2F1837.HPQuickTouch +#AD2F1837.HPRegistration +#AD2F1837.HPSupportAssistant +#AD2F1837.HPSureShieldAI +#AD2F1837.HPSystemInformation +#AD2F1837.HPWelcome +#AD2F1837.HPWorkWell +#AD2F1837.myHP diff --git a/Get.ps1 b/Get.ps1 index 1fdcb21..9b437c6 100644 --- a/Get.ps1 +++ b/Get.ps1 @@ -12,6 +12,7 @@ param ( [switch]$RemoveGamingApps, [switch]$RemoveCommApps, [switch]$RemoveDevApps, + [switch]$RemoveHPApps, [switch]$RemoveW11Outlook, [switch]$ForceRemoveEdge, [switch]$DisableDVR, diff --git a/README.md b/README.md index 501b425..9b1f2d2 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ The script also includes many features that system administrators will enjoy. Su #### App Removal -- Remove a wide variety of bloatware apps. +- Remove a wide variety of preinstalled apps. - Remove all pinned apps from start for the current user, or for all existing & new users. (Windows 11 only) #### Telemetry, Tracking & Suggested Content @@ -206,7 +206,7 @@ The script allows you to select exactly what changes you want to make, but it al
Click to expand
- + General apps that are not removed by default: - Microsoft.Edge (Edge browser, only removeable in the EEA) - Microsoft.GetHelp (Required for some Windows 11 Troubleshooters) @@ -228,6 +228,28 @@ The script allows you to select exactly what changes you want to make, but it al - Microsoft.Xbox.TCUI (UI framework, removing this may break MS store, photos and certain games) - Microsoft.ZuneMusic (Modern Media Player) - MicrosoftWindows.CrossDevice (Phone integration within File Explorer, Camera and more) + + HP apps that are not removed by default: + - AD2F1837.HPAIExperienceCenter* + - AD2F1837.HPConnectedMusic* + - AD2F1837.HPConnectedPhotopoweredbySnapfish* + - AD2F1837.HPDesktopSupportUtilities* + - AD2F1837.HPEasyClean* + - AD2F1837.HPFileViewer* + - AD2F1837.HPJumpStarts* + - AD2F1837.HPPCHardwareDiagnosticsWindows* + - AD2F1837.HPPowerManager* + - AD2F1837.HPPrinterControl* + - AD2F1837.HPPrivacySettings* + - AD2F1837.HPQuickDrop* + - AD2F1837.HPQuickTouch* + - AD2F1837.HPRegistration* + - AD2F1837.HPSupportAssistant* + - AD2F1837.HPSureShieldAI* + - AD2F1837.HPSystemInformation* + - AD2F1837.HPWelcome* + - AD2F1837.HPWorkWell* + - AD2F1837.myHP* Gaming related apps that are not removed by default: - Microsoft.GamingApp* (Modern Xbox Gaming App, required for installing some games) @@ -326,6 +348,7 @@ The quick and advanced usage methods support switch parameters. A table of all t | -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 `-RunAppsListGenerator` parameter. No apps will be removed if this file does not exist. | | -RunAppsListGenerator | Run the apps list generator to generate a custom 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. | +| -RemoveHPApps | Remove preinstalled HP 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 ed2d847..52f4b45 100644 --- a/Win11Debloat.ps1 +++ b/Win11Debloat.ps1 @@ -14,6 +14,7 @@ param ( [switch]$RemoveGamingApps, [switch]$RemoveCommApps, [switch]$RemoveDevApps, + [switch]$RemoveHPApps, [switch]$RemoveW11Outlook, [switch]$ForceRemoveEdge, [switch]$DisableDVR, @@ -1459,6 +1460,12 @@ else { RemoveApps $appsList continue } + 'RemoveHPApps' { + $appsList = 'AD2F1837.HPAIExperienceCenter', 'AD2F1837.HPJumpStarts', 'AD2F1837.HPPCHardwareDiagnosticsWindows', 'AD2F1837.HPPowerManager', 'AD2F1837.HPPrivacySettings', 'AD2F1837.HPSupportAssistant', 'AD2F1837.HPSureShieldAI', 'AD2F1837.HPSystemInformation', 'AD2F1837.HPQuickDrop', 'AD2F1837.HPWorkWell', 'AD2F1837.myHP', 'AD2F1837.HPDesktopSupportUtilities', 'AD2F1837.HPQuickTouch', 'AD2F1837.HPEasyClean', 'AD2F1837.HPConnectedMusic', 'AD2F1837.HPFileViewer', 'AD2F1837.HPRegistration', 'AD2F1837.HPWelcome', 'AD2F1837.HPConnectedPhotopoweredbySnapfish', 'AD2F1837.HPPrinterControl' + Write-Output "> Removing HP apps..." + RemoveApps $appsList + continue + } "ForceRemoveEdge" { ForceRemoveEdge continue