K
Kjell
Guest
Is there any way of removing Windows Getting Started app from the ISO?
Thanks for the feedbacktry to use the scripts i give for teams chats edge for now
its at the other thread you openedThanks for the feedback
Could you share the link to your scripts (I can't view your profile since you've limited the number of members which can view it)?
It's here if anyone is interested https://www.ntlite.com/community/in...t-teams-automatically-installing-itself.2480/its at the other thread you opened
Get-AppxPackage *getstarted* | Remove-AppxPackage
@echo off
title Remove UWP Apps
color a
cls
:: Remove UWP Apps
for %%# in (SecHealthUI,WindowsFeedbackHub,GetHelp,GetStarted,BingNews,BingWeather,ZuneMusic,ZuneVideo,Print3D,3DBuilder,Microsof3DViewer,MicrosoftOfficeHub,Office.OneNote,OneConnect,OneDriveSync,People,SkypeApp,StickyNotes,Todos,YourPhone,PowerAutomateDesktop,Photos,Alarms,Camera,WindowsMaps,WindowsSoundRecorder,Messaging) do (
>nul powershell -noprofile -executionpolicy bypass -command "Get-AppxPackage -Name *%%#* -AllUsers | Foreach {Remove-AppxPackage $_.PackageFullName -AllUsers}"
>nul powershell -noprofile -executionpolicy bypass -command "Get-ProvisionedAppxPackage -Online | Where-Object { $_.PackageName -match '%%#' } | ForEach-Object { Remove-ProvisionedAppxPackage -Online -AllUsers -PackageName $_.PackageName }"
)
exit