Windows 11 - Getting Started removal?

Reported to nuhi he will look into it when he can, its normal to have some missing things on ntlite process right now, windows 11 is so fresh

what i detected
at windows 10: focus hours configurations
at windows 11: focus hours configurations, getting started app, teams, iso left overs, modern app explanations like "web experience host" and possibly more leftovers that i can't know

try to use the scripts i give for teams chats edge for now
 
Last edited:
yes you can remove uwp apps by powershell or cmd with this normally. but its not being removed on my system... i don't have getstart uwp app but app is still there. maybe its not that.. what ever change according to your needs.

Code:
@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
 
Last edited:
NTLite only removes the W10 Get Started ("Tips"), and not the W11 AppX equivalent. When it's updated, it should highlight which component belongs to what OS version.
 
Back
Top