Here is the list of the commands you can use to uninstall or hide the preloaded apps from your Windows 11 system. Uninstall 3D Builder: Get-AppxPackage *3dbuilder* | Remove-AppxPackage Uninstall Sway: Get-AppxPackage *sway* | remove-AppxPackage Uninstall Alarms & Clock: Get-AppxPackage *alarms* | Remove-AppxPackage Uninstall Calculator: Get-AppxPackage *calculator* | Remove-AppxPackage Uninstall Calendar and Mail: Get-AppxPackage *communicationsapps* | Remove-AppxPackage Uninstall Get Office: Get-AppxPackage *officehub* | Remove-AppxPackage Uninstall Camera: Get-AppxPackage *camera* | Remove-AppxPackage Uninstall Skype: Get-AppxPackage *skype* | Remove-AppxPackage Uninstall Movies & TV: Get-AppxPackage *zunevideo* | Remove-AppxPackage Uninstall Groove Music and Movies & TV apps together: Get-AppxPackage *zune* | Remove-AppxPackage Uninstall Maps: Get-AppxPackage *maps* | Remove-AppxPackage Uninstall Microsoft Solitaire Collection: Get-AppxPackage *solitaire* | Remove-AppxPackage Uninstall Get Started: Get-AppxPackage *getstarted* | Remove-AppxPackage Uninstall Money: Get-AppxPackage *bingfinance* | Remove-AppxPackage Uninstall News: Get-AppxPackage *bingnews* | Remove-AppxPackage Uninstall Sports: Get-AppxPackage *bingsports* | Remove-AppxPackage Uninstall Weather: Get-AppxPackage *bingweather* | Remove-AppxPackage Uninstall Money, News, Sports, and Weather apps together: Get-Appxpackage *bing* | Remove-AppxPackage Uninstall OneNote: Get-AppxPackage *onenote* | Remove-AppxPackage Uninstall People: Get-AppxPackage *people* | Remove-AppxPackage Uninstall Your Phone Companion: Get-AppxPackage *yourphone* | Remove-AppxPackage Uninstall Photos: Get-AppxPackage *photos* | Remove-AppxPackage Uninstall Microsoft Store: Get-AppxPackage *windowsstore* | Remove-AppxPackage Uninstall Voice Recorder: Get-AppxPackage *soundrecorder* | Remove-AppxPackag If you want to remove all pre-installed apps from the current user with a single command, then use the below command: Get-AppxPackage | Remove-AppxPackage If you want to remove all inbuilt / default apps (bloatware) from all user accounts on your computer, then use the following command: Get-AppxPackage -allusers | Remove-AppxPackage To remove all inbuilt apps from a specific user account, type this command: Get-AppxPackage -user | Remove-AppxPackage There’s are also a way you can remove all apps while keeping a few specific ones. You probably don’t want to remove all pre-installed apps from your Windows. In such cases, use the below commands: To remove all apps while keeping a single app (e.g. Calculator), enter this command: Get-AppxPackage | where-object {$_.name –notlike “*calculator*”} | Remove-AppxPackage