From a0fdf2cb80d4dd777448a056ff28eb5187c6457c Mon Sep 17 00:00:00 2001 From: "Sean (ANGRYxScotsman)" <36518683+seanh1995@users.noreply.github.com> Date: Tue, 7 Apr 2026 16:48:52 +0100 Subject: [PATCH] removed redundant appx packages from win11 creator (#4321) * redundant * Update Invoke-WinUtilISOScript.ps1 * Update Invoke-WinUtilISOScript.ps1 * Update Invoke-WinUtilISOScript.ps1 * Update Invoke-WinUtilISOScript.ps1 * Update Invoke-WinUtilISOScript.ps1 * Update Invoke-WinUtilISOScript.ps1 * Update Invoke-WinUtilISOScript.ps1 * Update Invoke-WinUtilISOScript.ps1 * removed notes aswell --- functions/private/Invoke-WinUtilISOScript.ps1 | 26 +------------------ 1 file changed, 1 insertion(+), 25 deletions(-) diff --git a/functions/private/Invoke-WinUtilISOScript.ps1 b/functions/private/Invoke-WinUtilISOScript.ps1 index c6749d6f..16dc7e20 100644 --- a/functions/private/Invoke-WinUtilISOScript.ps1 +++ b/functions/private/Invoke-WinUtilISOScript.ps1 @@ -50,7 +50,6 @@ function Invoke-WinUtilISOScript { .NOTES Author : Chris Titus @christitustech GitHub : https://github.com/ChrisTitusTech - Version : 26.03.02 #> param ( [Parameter(Mandatory)][string]$ScratchDir, @@ -116,48 +115,25 @@ function Invoke-WinUtilISOScript { ForEach-Object { if ($_ -match 'PackageName : (.*)') { $matches[1] } } $packagePrefixes = @( - 'AppUp.IntelManagementandSecurityStatus', 'Clipchamp.Clipchamp', - 'DolbyLaboratories.DolbyAccess', - 'DolbyLaboratories.DolbyDigitalPlusDecoderOEM', 'Microsoft.BingNews', 'Microsoft.BingSearch', 'Microsoft.BingWeather', - 'Microsoft.Copilot', - 'Microsoft.Windows.CrossDevice', 'Microsoft.GetHelp', - 'Microsoft.Getstarted', - 'Microsoft.Microsoft3DViewer', 'Microsoft.MicrosoftOfficeHub', 'Microsoft.MicrosoftSolitaireCollection', 'Microsoft.MicrosoftStickyNotes', - 'Microsoft.MixedReality.Portal', - 'Microsoft.MSPaint', - 'Microsoft.Office.OneNote', - 'Microsoft.OfficePushNotificationUtility', 'Microsoft.OutlookForWindows', 'Microsoft.Paint', - 'Microsoft.People', 'Microsoft.PowerAutomateDesktop', - 'Microsoft.SkypeApp', 'Microsoft.StartExperiencesApp', 'Microsoft.Todos', - 'Microsoft.Wallet', 'Microsoft.Windows.DevHome', - 'Microsoft.Windows.Copilot', - 'Microsoft.Windows.Teams', - 'Microsoft.WindowsAlarms', - 'Microsoft.WindowsCamera', - 'microsoft.windowscommunicationsapps', 'Microsoft.WindowsFeedbackHub', - 'Microsoft.WindowsMaps', 'Microsoft.WindowsSoundRecorder', 'Microsoft.ZuneMusic', - 'Microsoft.ZuneVideo', - 'MicrosoftCorporationII.MicrosoftFamily', 'MicrosoftCorporationII.QuickAssist', - 'MSTeams', - 'MicrosoftTeams' + 'MSTeams' ) $packages | Where-Object { $pkg = $_; $packagePrefixes | Where-Object { $pkg -like "*$_*" } } |