-
Notifications
You must be signed in to change notification settings - Fork 364
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
190 additions
and
168 deletions.
There are no files selected for viewing
343 changes: 182 additions & 161 deletions
343
resources/stage_2_de-bloat/metro/metro_3rd_party_modern_apps_to_target_by_name.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,161 +1,182 @@ | ||
<# | ||
Purpose: Script to remove many of the pre-loaded 3rd-party Metro "modern app" bloatware. Called by Tron in Stage 2: De-bloat | ||
Add any AppX uninstall commands to this list to target them for removal | ||
Requirements: 1. Administrator access | ||
2. Windows 7 and up | ||
Author: vocatus on reddit.com/r/TronScript ( vocatus.gate at gmail ) // PGP key: 0x07d1490f82a211a2 | ||
Version: 1.1.8 + Add *CandyCrush* and SpotifyAB.Spotify* | ||
1.1.7 + Add *A278AB0D.DisneyMagicKingdoms* and *828B5831.HiddenCityMysteryofShadows*. Thanks to github:colepnc | ||
1.1.6 ! Fix function evalution of * character. Thanks to u/madbomb122 and u/phant0md | ||
1.1.5 + Add various entries, thanks to github:kronflux | ||
1.1.4 + Add *A278AB0D.MarchofEmpires*, *KeeperSecurityInc.Keeper*, *ThumbmunkeysLtd.PhototasticCollage*. Thanks to /u/Phaellow | ||
1.1.3 + Add Playtika.CaesarsSlotsFreeCasino and some others | ||
1.1.2 + Add *king.com.CandyCrushSodaSaga*. Thanks to /u/Phaellow | ||
1.1.1 + Add flaregamesGmbH.RoyalRevolt2. Thanks to /u/Phaellow | ||
1.1.0 * Update script to use cleaner removal function. Thanks to /u/madbomb122 | ||
1.0.2 + Add 6Wunderkinder.Wunderlist, 2FE3CB00.PicsArt-PhotoStudio, Microsoft.NetworkSpeedTest, thanks to github:Bromeego | ||
1.0.1 + Add 46928bounde.EclipseManager, D5EA27B7.Duolingo-LearnLanguagesforFree, thanks to /u/phobos258 | ||
1.0.0 + Add script version and date variables to support automatic updates at Tron runtime | ||
#> | ||
$ErrorActionPreference = "SilentlyContinue" | ||
|
||
|
||
######## | ||
# PREP # | ||
######## | ||
$METRO_3RD_PARTY_MODERN_APPS_TO_TARGET_BY_NAME_SCRIPT_VERSION = "1.1.8" | ||
$METRO_3RD_PARTY_MODERN_APPS_TO_TARGET_BY_NAME_SCRIPT_DATE = "2018-02-16" | ||
|
||
# Build the removal function | ||
Function Remove-App([String]$AppName){ | ||
$PackageFullName = (Get-AppxPackage $AppName).PackageFullName | ||
$ProPackageFullName = (Get-AppxProvisionedPackage -online | where {$_.Displayname -like $AppName}).PackageName | ||
Remove-AppxPackage -package $PackageFullName | Out-Null | ||
Remove-AppxProvisionedPackage -online -packagename $ProPackageFullName | Out-Null | ||
} | ||
|
||
########### | ||
# EXECUTE # | ||
########### | ||
# Active identifiers | ||
Remove-App "*06DAC6F6.StumbleUpon*" | ||
Remove-App "*134D4F5B.Box*" | ||
Remove-App "*1430GreenfieldTechnologie.PuzzleTouch*" | ||
Remove-App "*26720RandomSaladGamesLLC.HeartsDeluxe*" | ||
Remove-App "*26720RandomSaladGamesLLC.SimpleSolitaire*" | ||
Remove-App "*29982CsabaHarmath.UnCompress*" | ||
Remove-App "*2FE3CB00.PicsArt-PhotoStudio*" | ||
Remove-App "*46928bounde.EclipseManager*" | ||
Remove-App "*4AE8B7C2.Booking.comPartnerEdition*" | ||
Remove-App "*4DF9E0F8.Netflix*" | ||
Remove-App "*6Wunderkinder.Wunderlist*" | ||
Remove-App "*7906AAC0.TOSHIBACanadaPartners*" | ||
Remove-App "*7906AAC0.ToshibaCanadaWarrantyService*" | ||
Remove-App "*7digitalLtd.7digitalMusicStore*" | ||
Remove-App "*828B5831.HiddenCityMysteryofShadows*" | ||
Remove-App "*89006A2E.AutodeskSketchBook*" | ||
Remove-App "*9E2F88E3.Twitter*" | ||
Remove-App "*A278AB0D.DisneyMagicKingdoms*" | ||
Remove-App "*A278AB0D.MarchofEmpires*" | ||
Remove-App "*A34E4AAB.YogaChef*" | ||
Remove-App "*AD2F1837.HP*" | ||
Remove-App "*ASUSCloudCorporation.MobileFileExplorer*" | ||
Remove-App "*AccuWeather.AccuWeatherforWindows8*" | ||
Remove-App "*AcerIncorporated.AcerExplorer*" | ||
Remove-App "*AcerIncorporated.GatewayExplorer*" | ||
Remove-App "*ActiproSoftwareLLC*" # Code Writer app | ||
Remove-App "*AdobeSystemsIncorporated.AdobePhotoshopExpress*" | ||
Remove-App "*AdobeSystemsIncorporated.AdobeRevel*" | ||
Remove-App "*Amazon.com.Amazon*" | ||
Remove-App "*AppUp.IntelAppUpCatalogueAppWorldwideEdition*" | ||
Remove-App "*B9ECED6F.ASUSGIFTBOX*" | ||
Remove-App "*BD9B8345.AlbumbySony*" | ||
Remove-App "*BD9B8345.MusicbySony*" | ||
Remove-App "*BD9B8345.Socialife*" | ||
Remove-App "*BD9B8345.VAIOCare*" | ||
Remove-App "*BD9B8345.VAIOMessageCenter*" | ||
Remove-App "*CandyCrush*" | ||
Remove-App "*ChaChaSearch.ChaChaPushNotification*" | ||
Remove-App "*ClearChannelRadioDigital.iHeartRadio*" | ||
Remove-App "*CrackleInc.Crackle*" | ||
Remove-App "*CyberLinkCorp.ac.AcerCrystalEye*" | ||
Remove-App "*CyberLinkCorp.ac.SocialJogger*" | ||
Remove-App "*CyberLinkCorp.hs.YouCamforHP*" | ||
Remove-App "*CyberLinkCorp.id.PowerDVDforLenovoIdea*" | ||
Remove-App "*D52A8D61.FarmVille2CountryEscape*" | ||
Remove-App "*D5EA27B7.Duolingo-LearnLanguagesforFree*" | ||
Remove-App "*DB6EA5DB.CyberLinkMediaSuiteEssentials*" # CyberLink...sigh | ||
Remove-App "*DailymotionSA.Dailymotion*" | ||
Remove-App "*DellInc.DellShop*" | ||
Remove-App "*Drawboard.DrawboardPDF*" | ||
Remove-App "*E046963F.LenovoCompanion*" | ||
Remove-App "*E046963F.LenovoSupport*" | ||
Remove-App "*E0469640.CameraMan*" | ||
Remove-App "*E0469640.DeviceCollaboration*" | ||
Remove-App "*E0469640.LenovoRecommends*" | ||
Remove-App "*E0469640.YogaCameraMan*" | ||
Remove-App "*E0469640.YogaPhoneCompanion*" | ||
Remove-App "*E0469640.YogaPicks*" | ||
Remove-App "*EncyclopaediaBritannica.EncyclopaediaBritannica*" | ||
Remove-App "*Evernote.Evernote*" | ||
Remove-App "*Evernote.Skitch*" | ||
Remove-App "*F5080380.ASUSPhotoDirector*" | ||
Remove-App "*F5080380.ASUSPowerDirector*" | ||
Remove-App "*Facebook.Facebook*" # Facebook app | ||
Remove-App "*FilmOnLiveTVFree.FilmOnLiveTVFree*" | ||
Remove-App "*FingertappsInstruments*" | ||
Remove-App "*FingertappsOrganizer*" | ||
Remove-App "*Flipboard.Flipboard*" | ||
Remove-App "*FreshPaint*" | ||
Remove-App "*GAMELOFTSA.Asphalt8Airborne*" | ||
Remove-App "*GAMELOFTSA.SharkDash*" | ||
Remove-App "*GameGeneticsApps.FreeOnlineGamesforLenovo*" | ||
Remove-App "*GettingStartedwithWindows8*" | ||
Remove-App "*HPConnectedMusic*" | ||
Remove-App "*HPConnectedPhotopoweredbySnapfish*" | ||
Remove-App "*HPRegistration*" | ||
Remove-App "*JigsWar*" | ||
Remove-App "*KasperskyLab.KasperskyNow*" | ||
Remove-App "*KeeperSecurityInc.Keeper*" | ||
Remove-App "*KindleforWindows8*" | ||
Remove-App "*MAGIX.MusicMakerJam*" | ||
Remove-App "*McAfee*" | ||
Remove-App "*McAfeeInc.05.McAfeeSecurityAdvisorforASUS*" | ||
Remove-App "*MobileFileExplorer*" | ||
Remove-App "*MusicMakerJam*" | ||
Remove-App "*NAMCOBANDAIGamesInc.PAC-MANChampionshipEditionDXfo*" | ||
Remove-App "*NAVER.LINEwin8*" | ||
Remove-App "*PandoraMediaInc.29680B314EFC2*" | ||
Remove-App "*PinballFx2*" | ||
Remove-App "*Playtika.CaesarsSlotsFreeCasino*" | ||
Remove-App "*PublicationsInternational.iCookbookSE*" | ||
Remove-App "*RandomSaladGamesLLC.GinRummyProforHP*" | ||
Remove-App "*ShazamEntertainmentLtd.Shazam*" | ||
Remove-App "*SymantecCorporation.NortonStudio*" | ||
Remove-App "*TelegraphMediaGroupLtd.TheTelegraphforLenovo*" | ||
Remove-App "*TheNewYorkTimes.NYTCrossword*" | ||
Remove-App "*ThumbmunkeysLtd.PhototasticCollage*" | ||
Remove-App "*TripAdvisorLLC.TripAdvisorHotelsFlightsRestaurants*" | ||
Remove-App "*TuneIn.TuneInRadio*" | ||
Remove-App "*UptoElevenDigitalSolution.mysms-Textanywhere*" | ||
Remove-App "*Weather.TheWeatherChannelforHP*" | ||
Remove-App "*Weather.TheWeatherChannelforLenovo*" | ||
Remove-App "*WildTangentGames*" | ||
Remove-App "*YouSendIt.HighTailForLenovo*" | ||
Remove-App "*ZinioLLC.Zinio*" | ||
Remove-App "*eBayInc.eBay*" | ||
Remove-App "*esobiIncorporated.newsXpressoMetro*" | ||
Remove-App "*fingertappsASUS.FingertappsInstrumentsrecommendedb*" | ||
Remove-App "*fingertappsASUS.JigsWarrecommendedbyASUS*" | ||
Remove-App "*fingertappsasus.FingertappsOrganizerrecommendedbyA*" | ||
Remove-App "*flaregamesGmbH.RoyalRevolt2*" | ||
Remove-App "*king.com.BubbleWitch3Saga*" | ||
Remove-App "*king.com.CandyCrushSodaSaga*" | ||
Remove-App "*sMedioforHP.sMedio360*" | ||
Remove-App "*sMedioforToshiba.TOSHIBAMediaPlayerbysMedioTrueLin*" | ||
Remove-App "*toolbar*" | ||
Remove-App "*zuukaInc.iStoryTimeLibrary*" | ||
Remove-App "SpotifyAB.Spotify*" | ||
|
||
# Inactive identifers | ||
#Remove-App "*Netflix*" | ||
<# | ||
Purpose: Script to remove many of the pre-loaded 3rd-party Metro "modern app" bloatware. Called by Tron in Stage 2: De-bloat | ||
Add any AppX uninstall commands to this list to target them for removal | ||
Requirements: 1. Administrator access | ||
2. Windows 8 and up | ||
Author: vocatus on reddit.com/r/TronScript ( vocatus.gate at gmail ) // PGP key: 0x07d1490f82a211a2 | ||
Version: 1.1.9 + Add more user-submitted entries | ||
1.1.8 + Add *CandyCrush* and SpotifyAB.Spotify* | ||
1.1.7 + Add *A278AB0D.DisneyMagicKingdoms* and *828B5831.HiddenCityMysteryofShadows*. Thanks to github:colepnc | ||
1.1.6 ! Fix function evalution of * character. Thanks to u/madbomb122 and u/phant0md | ||
1.1.5 + Add various entries, thanks to github:kronflux | ||
1.1.4 + Add *A278AB0D.MarchofEmpires*, *KeeperSecurityInc.Keeper*, *ThumbmunkeysLtd.PhototasticCollage*. Thanks to /u/Phaellow | ||
1.1.3 + Add Playtika.CaesarsSlotsFreeCasino and some others | ||
1.1.2 + Add *king.com.CandyCrushSodaSaga*. Thanks to /u/Phaellow | ||
1.1.1 + Add flaregamesGmbH.RoyalRevolt2. Thanks to /u/Phaellow | ||
1.1.0 * Update script to use cleaner removal function. Thanks to /u/madbomb122 | ||
1.0.2 + Add 6Wunderkinder.Wunderlist, 2FE3CB00.PicsArt-PhotoStudio, Microsoft.NetworkSpeedTest, thanks to github:Bromeego | ||
1.0.1 + Add 46928bounde.EclipseManager, D5EA27B7.Duolingo-LearnLanguagesforFree, thanks to /u/phobos258 | ||
1.0.0 + Add script version and date variables to support automatic updates at Tron runtime | ||
#> | ||
$ErrorActionPreference = "SilentlyContinue" | ||
|
||
|
||
######## | ||
# PREP # | ||
######## | ||
$METRO_3RD_PARTY_MODERN_APPS_TO_TARGET_BY_NAME_SCRIPT_VERSION = "1.1.9" | ||
$METRO_3RD_PARTY_MODERN_APPS_TO_TARGET_BY_NAME_SCRIPT_DATE = "2018-03-06" | ||
|
||
# Build the removal function | ||
Function Remove-App([String]$AppName){ | ||
$PackageFullName = (Get-AppxPackage $AppName).PackageFullName | ||
$ProPackageFullName = (Get-AppxProvisionedPackage -online | where {$_.Displayname -like $AppName}).PackageName | ||
Remove-AppxPackage -package $PackageFullName | Out-Null | ||
Remove-AppxProvisionedPackage -online -packagename $ProPackageFullName | Out-Null | ||
} | ||
|
||
########### | ||
# EXECUTE # | ||
########### | ||
# Active identifiers | ||
Remove-App "*06DAC6F6.StumbleUpon*" | ||
Remove-App "*134D4F5B.Box*" | ||
Remove-App "*1430GreenfieldTechnologie.PuzzleTouch*" | ||
Remove-App "*26720RandomSaladGamesLLC.HeartsDeluxe*" | ||
Remove-App "*26720RandomSaladGamesLLC.SimpleSolitaire*" | ||
Remove-App "*29982CsabaHarmath.UnCompress*" | ||
Remove-App "*2FE3CB00.PicsArt-PhotoStudio*" | ||
Remove-App "*46928bounde.EclipseManager*" | ||
Remove-App "*4AE8B7C2.Booking.comPartnerEdition*" | ||
Remove-App "*4DF9E0F8.Netflix*" | ||
Remove-App "*6Wunderkinder.Wunderlist*" | ||
Remove-App "*7906AAC0.TOSHIBACanadaPartners*" | ||
Remove-App "*7906AAC0.ToshibaCanadaWarrantyService*" | ||
Remove-App "*7digitalLtd.7digitalMusicStore*" | ||
Remove-App "*828B5831.HiddenCityMysteryofShadows*" | ||
Remove-App "*89006A2E.AutodeskSketchBook*" | ||
Remove-App "*9E2F88E3.Twitter*" | ||
Remove-App "*A278AB0D.DisneyMagicKingdoms*" | ||
Remove-App "*A278AB0D.MarchofEmpires*" | ||
Remove-App "*A34E4AAB.YogaChef*" | ||
Remove-App "*AD2F1837.HP*" | ||
Remove-App "*ASUSCloudCorporation.MobileFileExplorer*" | ||
Remove-App "*AccuWeather.AccuWeatherforWindows8*" | ||
Remove-App "*AcerIncorporated.AcerExplorer*" | ||
Remove-App "*AcerIncorporated.GatewayExplorer*" | ||
Remove-App "*ActiproSoftwareLLC*" # Code Writer app | ||
Remove-App "*AdobeSystemsIncorporated.AdobePhotoshopExpress*" | ||
Remove-App "*AdobeSystemsIncorporated.AdobeRevel*" | ||
Remove-App "*Amazon.com.Amazon*" | ||
Remove-App "*AppUp.IntelAppUpCatalogueAppWorldwideEdition*" | ||
Remove-App "*B9ECED6F.ASUSGIFTBOX*" | ||
Remove-App "*BD9B8345.AlbumbySony*" | ||
Remove-App "*BD9B8345.MusicbySony*" | ||
Remove-App "*BD9B8345.Socialife*" | ||
Remove-App "*BD9B8345.VAIOCare*" | ||
Remove-App "*BD9B8345.VAIOMessageCenter*" | ||
Remove-App "*CandyCrush*" | ||
Remove-App "*ChaChaSearch.ChaChaPushNotification*" | ||
Remove-App "*ClearChannelRadioDigital.iHeartRadio*" | ||
Remove-App "*CrackleInc.Crackle*" | ||
Remove-App "*CyberLinkCorp.ac.AcerCrystalEye*" | ||
Remove-App "*CyberLinkCorp.ac.SocialJogger*" | ||
Remove-App "*CyberLinkCorp.hs.YouCamforHP*" | ||
Remove-App "*CyberLinkCorp.id.PowerDVDforLenovoIdea*" | ||
Remove-App "*D52A8D61.FarmVille2CountryEscape*" | ||
Remove-App "*D5EA27B7.Duolingo-LearnLanguagesforFree*" | ||
Remove-App "*DB6EA5DB.CyberLinkMediaSuiteEssentials*" # CyberLink...sigh | ||
Remove-App "*DailymotionSA.Dailymotion*" | ||
Remove-App "*DellInc.DellShop*" | ||
Remove-App "*Drawboard.DrawboardPDF*" | ||
Remove-App "*E046963F.LenovoCompanion*" | ||
Remove-App "*E046963F.LenovoSupport*" | ||
Remove-App "*E0469640.CameraMan*" | ||
Remove-App "*E0469640.DeviceCollaboration*" | ||
Remove-App "*E0469640.LenovoRecommends*" | ||
Remove-App "*E0469640.YogaCameraMan*" | ||
Remove-App "*E0469640.YogaPhoneCompanion*" | ||
Remove-App "*E0469640.YogaPicks*" | ||
Remove-App "*EncyclopaediaBritannica.EncyclopaediaBritannica*" | ||
Remove-App "*Evernote.Evernote*" | ||
Remove-App "*Evernote.Skitch*" | ||
Remove-App "*F5080380.ASUSPhotoDirector*" | ||
Remove-App "*F5080380.ASUSPowerDirector*" | ||
Remove-App "*Facebook.Facebook*" # Facebook app | ||
Remove-App "*FilmOnLiveTVFree.FilmOnLiveTVFree*" | ||
Remove-App "*FingertappsInstruments*" | ||
Remove-App "*FingertappsOrganizer*" | ||
Remove-App "*Flipboard.Flipboard*" | ||
Remove-App "*FreshPaint*" | ||
Remove-App "*GAMELOFTSA.Asphalt8Airborne*" | ||
Remove-App "*GAMELOFTSA.SharkDash*" | ||
Remove-App "*GameGeneticsApps.FreeOnlineGamesforLenovo*" | ||
Remove-App "*GettingStartedwithWindows8*" | ||
Remove-App "*HPConnectedMusic*" | ||
Remove-App "*HPConnectedPhotopoweredbySnapfish*" | ||
Remove-App "*HPRegistration*" | ||
Remove-App "*JigsWar*" | ||
Remove-App "*KasperskyLab.KasperskyNow*" | ||
Remove-App "*KeeperSecurityInc.Keeper*" | ||
Remove-App "*KindleforWindows8*" | ||
Remove-App "*MAGIX.MusicMakerJam*" | ||
Remove-App "*McAfee*" | ||
Remove-App "*McAfeeInc.05.McAfeeSecurityAdvisorforASUS*" | ||
Remove-App "*MobileFileExplorer*" | ||
Remove-App "*MusicMakerJam*" | ||
Remove-App "*NAMCOBANDAIGamesInc.PAC-MANChampionshipEditionDXfo*" | ||
Remove-App "*NAVER.LINEwin8*" | ||
Remove-App "*PandoraMediaInc.29680B314EFC2*" | ||
Remove-App "*PinballFx2*" | ||
Remove-App "*Playtika.CaesarsSlotsFreeCasino*" | ||
Remove-App "*PublicationsInternational.iCookbookSE*" | ||
Remove-App "*RandomSaladGamesLLC.GinRummyProforHP*" | ||
Remove-App "*ShazamEntertainmentLtd.Shazam*" | ||
Remove-App "*SymantecCorporation.NortonStudio*" | ||
Remove-App "*TelegraphMediaGroupLtd.TheTelegraphforLenovo*" | ||
Remove-App "*TheNewYorkTimes.NYTCrossword*" | ||
Remove-App "*ThumbmunkeysLtd.PhototasticCollage*" | ||
Remove-App "*TripAdvisorLLC.TripAdvisorHotelsFlightsRestaurants*" | ||
Remove-App "*TuneIn.TuneInRadio*" | ||
Remove-App "*UptoElevenDigitalSolution.mysms-Textanywhere*" | ||
Remove-App "*Weather.TheWeatherChannelforHP*" | ||
Remove-App "*Weather.TheWeatherChannelforLenovo*" | ||
Remove-App "*WildTangentGames*" | ||
Remove-App "*YouSendIt.HighTailForLenovo*" | ||
Remove-App "*ZinioLLC.Zinio*" | ||
Remove-App "*eBayInc.eBay*" | ||
Remove-App "*esobiIncorporated.newsXpressoMetro*" | ||
Remove-App "*fingertappsASUS.FingertappsInstrumentsrecommendedb*" | ||
Remove-App "*fingertappsASUS.JigsWarrecommendedbyASUS*" | ||
Remove-App "*fingertappsasus.FingertappsOrganizerrecommendedbyA*" | ||
Remove-App "*flaregamesGmbH.RoyalRevolt2*" | ||
Remove-App "*king.com.BubbleWitch3Saga*" | ||
Remove-App "*king.com.CandyCrush*" | ||
Remove-App "*sMedioforHP.sMedio360*" | ||
Remove-App "*sMedioforToshiba.TOSHIBAMediaPlayerbysMedioTrueLin*" | ||
Remove-App "*toolbar*" | ||
Remove-App "*zuukaInc.iStoryTimeLibrary*" | ||
Remove-App "5269FriedChicken.YouTubeVideosDownloader*" | ||
Remove-App "64885BlueEdge.OneCalendar*" | ||
Remove-App "A278AB0D.DragonManiaLegends*" | ||
Remove-App "AD2F1837.DiscoverHPTouchpointManager*" | ||
Remove-App "AD2F1837.HPJumpStart*" | ||
Remove-App "ActiproSoftwareLLC.562882FEEB491*" | ||
Remove-App "DolbyLaboratories.DolbyAccess*" | ||
Remove-App "DriverToaster*" | ||
Remove-App "ESPNInc.WatchESPN*" | ||
Remove-App "Facebook.317180B0BB486*" | ||
Remove-App "Facebook.InstagramBeta*" | ||
Remove-App "HuluLLC.HuluPlus*" | ||
Remove-App "K-NFBReadingTechnologiesI.BookPlace*" | ||
Remove-App "LenovoCorporation.LenovoID*" | ||
Remove-App "LenovoCorporation.LenovoSettings*" | ||
Remove-App "NBCUniversalMediaLLC.NBCSportsLiveExtra*" | ||
Remove-App "SpotifyAB.Spotify*" | ||
Remove-App "SpotifyAB.SpotifyMusic*" | ||
Remove-App "ToshibaAmericaInformation.ToshibaCentral*" | ||
Remove-App "Vimeo.Vimeo*" | ||
Remove-App "WinZipComputing.WinZipUniversal*" | ||
|
||
# Inactive identifers | ||
#Remove-App "*Netflix*" |
Oops, something went wrong.