diff --git a/Appslist.txt b/Appslist.txt index de6b954..755de66 100644 --- a/Appslist.txt +++ b/Appslist.txt @@ -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 diff --git a/Get.ps1 b/Get.ps1 index 1103e85..93732ee 100644 --- a/Get.ps1 +++ b/Get.ps1 @@ -13,7 +13,6 @@ param ( [switch]$RemoveAppsCustom, [switch]$RemoveGamingApps, [switch]$RemoveCommApps, - [switch]$RemoveDevApps, [switch]$RemoveHPApps, [switch]$RemoveW11Outlook, [switch]$ForceRemoveEdge, diff --git a/README.md b/README.md index cf41b49..3469611 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/Win11Debloat.ps1 b/Win11Debloat.ps1 index 7099c05..c1884d1 100644 --- a/Win11Debloat.ps1 +++ b/Win11Debloat.ps1 @@ -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..."