Added Dev Home and Power Automate to default app selection.

With this, the option to specifically remove developer related apps (RemoveDevApps) was also removed.
This commit is contained in:
Raphire
2025-10-06 21:51:19 +02:00
parent f46618dfe2
commit 6c97bbead0
4 changed files with 6 additions and 17 deletions

View File

@@ -29,8 +29,10 @@ Microsoft.Office.OneNote # Digital note-taking app (Univer
Microsoft.Office.Sway # Presentation and storytelling app
Microsoft.OneConnect # Mobile Operator management app (Replaced by Mobile Plans)
Microsoft.Print3D # 3D printing preparation software
Microsoft.PowerAutomateDesktop # Desktop automation tool (RPA)
Microsoft.SkypeApp # Skype communication app (Universal Windows Platform version)
Microsoft.Todos # To-do list and task management app
Microsoft.Windows.DevHome # Developer dashboard and tool configuration utility, no longer supported
Microsoft.WindowsAlarms # Alarms & Clock app
Microsoft.WindowsFeedbackHub # App for providing feedback to Microsoft on Windows
Microsoft.WindowsMaps # Mapping and navigation app
@@ -108,12 +110,10 @@ XING # Professional networking platfor
#Microsoft.OutlookForWindows # New mail app: Outlook for Windows
#Microsoft.Paint # Classic Paint (Traditional 2D paint application)
#Microsoft.People # Required for & included with Mail & Calendar (Contacts management)
#Microsoft.PowerAutomateDesktop # Desktop automation tool (RPA)
#Microsoft.RemoteDesktop # Remote Desktop client app
#Microsoft.ScreenSketch # Snipping Tool (Screenshot and annotation tool)
#Microsoft.StartExperiencesApp # This app powers Windows Widgets My Feed
#Microsoft.Whiteboard # Digital collaborative whiteboard app
#Microsoft.Windows.DevHome # Developer dashboard and tool configuration utility
#Microsoft.Windows.Photos # Default photo viewing and basic editing app
#Microsoft.WindowsCalculator # Calculator app
#Microsoft.WindowsCamera # Camera app for using built-in or connected cameras

View File

@@ -13,7 +13,6 @@ param (
[switch]$RemoveAppsCustom,
[switch]$RemoveGamingApps,
[switch]$RemoveCommApps,
[switch]$RemoveDevApps,
[switch]$RemoveHPApps,
[switch]$RemoveW11Outlook,
[switch]$ForceRemoveEdge,

View File

@@ -217,9 +217,11 @@ These apps are uninstalled when you opt to remove the default selection of apps.
- Microsoft.Office.OneNote (Digital note-taking app, Universal Windows Platform version)
- Microsoft.Office.Sway (Presentation and storytelling app)
- Microsoft.OneConnect (Mobile Operator management app, replaced by Mobile Plans)
- Microsoft.PowerAutomateDesktop (Desktop automation tool)
- Microsoft.Print3D (3D printing preparation software)
- Microsoft.SkypeApp (Skype communication app, Universal Windows Platform version)
- Microsoft.Todos (To-do list and task management app)
- Microsoft.Windows.DevHome (Developer dashboard and tool configuration utility, no longer supported)
- Microsoft.WindowsAlarms (Alarms & Clock app)
- Microsoft.WindowsFeedbackHub (App for providing feedback to Microsoft on Windows)
- Microsoft.WindowsMaps (Mapping and navigation app)
@@ -299,6 +301,7 @@ These apps will not be removed by Win11Debloat unless explicitly selected by the
- Microsoft.OneDrive (OneDrive consumer)
- Microsoft.Paint (Classic Paint)
- Microsoft.People (Required for & included with Mail & Calendar)
- Microsoft.RemoteDesktop
- Microsoft.ScreenSketch (Snipping Tool)
- Microsoft.Whiteboard (Only preinstalled on devices with touchscreen and/or pen support)
- Microsoft.Windows.Photos
@@ -320,11 +323,6 @@ These apps will not be removed by Win11Debloat unless explicitly selected by the
- Microsoft.XboxIdentityProvider (Xbox sign-in framework, required for some games)
- Microsoft.XboxSpeechToTextOverlay (Might be required for some games, NOTE: This app cannot be reinstalled!)
Developer related apps:
- Microsoft.PowerAutomateDesktop
- Microsoft.RemoteDesktop
- Windows.DevHome
HP apps:
- AD2F1837.HPAIExperienceCenter
- AD2F1837.HPConnectedMusic

View File

@@ -15,7 +15,6 @@ param (
[switch]$RemoveAppsCustom,
[switch]$RemoveGamingApps,
[switch]$RemoveCommApps,
[switch]$RemoveDevApps,
[switch]$RemoveHPApps,
[switch]$RemoveW11Outlook,
[switch]$ForceRemoveEdge,
@@ -946,7 +945,7 @@ function DisplayCustomModeOptions {
Write-Host "Options:" -ForegroundColor Yellow
Write-Host " (n) Don't remove any apps" -ForegroundColor Yellow
Write-Host " (1) Only remove the default selection of apps" -ForegroundColor Yellow
Write-Host " (2) Remove the default selection of apps, as well as mail & calendar apps, developer apps and gaming apps" -ForegroundColor Yellow
Write-Host " (2) Remove the default selection of apps, as well as mail & calendar apps and gaming related apps" -ForegroundColor Yellow
Write-Host " (3) Manually select which apps to remove" -ForegroundColor Yellow
$RemoveAppsInput = Read-Host "Do you want to remove any apps? Apps will be removed for all users (n/1/2/3)"
@@ -976,7 +975,6 @@ function DisplayCustomModeOptions {
AddParameter 'RemoveApps' 'Remove the default selection of apps'
AddParameter 'RemoveCommApps' 'Remove the Mail, Calendar, and People apps'
AddParameter 'RemoveW11Outlook' 'Remove the new Outlook for Windows app'
AddParameter 'RemoveDevApps' 'Remove developer-related apps'
AddParameter 'RemoveGamingApps' 'Remove the Xbox App and Xbox Gamebar'
AddParameter 'DisableDVR' 'Disable Xbox game/screen recording'
}
@@ -1743,12 +1741,6 @@ switch ($script:Params.Keys) {
RemoveApps $appsList
continue
}
'RemoveDevApps' {
$appsList = 'Microsoft.PowerAutomateDesktop', 'Microsoft.RemoteDesktop', 'Windows.DevHome'
Write-Output "> Removing developer-related related apps..."
RemoveApps $appsList
continue
}
'RemoveGamingApps' {
$appsList = 'Microsoft.GamingApp', 'Microsoft.XboxGameOverlay', 'Microsoft.XboxGamingOverlay'
Write-Output "> Removing gaming related apps..."