DEV Community

redhcp
redhcp

Posted on

2 2

List or Remove apps default windows 10

List apps installed

Get-AppxPackage AllUsers | Select Name, PackageFullName
#option2
Get-AppxPackage -PackageTypeFilter Main, Bundle, Resource | Where-Object {$_.PackageFullName -like "*NAME_SEARCH*"}  | Select Name, PackageFullName
#option3
Get-AppxPackage -AllUsers | Where-Object {$_.PackageFullName -like "*NAME_SEARCH*"}  | Select Name, PackageFullName
Enter fullscreen mode Exit fullscreen mode

Remove PACKAGE_NAME

Get-AppxPackage PACKAGE_NAME | Remove-AppxPackage
#option2
Get-AppxPackage -PackageTypeFilter Main, Bundle, Resource | Where-Object {$_.PackageFullName -like "*NAME_SEARCH*"}  | Remove-AppxPackage -Allusers
Enter fullscreen mode Exit fullscreen mode

Remove apps list


scss
# 3D Builder
Get-AppxPackage *3dbuilder* | Remove-AppxPackage

# Get Office
Get-AppxPackage *officehub* | Remove-AppxPackage

# Groove Music
Get-AppxPackage *zunemusic* | Remove-AppxPackage

# Mail/Calendar
Get-AppxPackage *windowscommunicationapps* | Remove-AppxPackage

# Maps
Get-AppxPackage *windowsmaps* | Remove-AppxPackage

# Solitaire Collection
Get-AppxPackage *solitairecollection* | Remove-AppxPackage

# Movies & TV
Get-AppxPackage *zunevideo* | Remove-AppxPackage

# News
Get-AppxPackage *bingnews* | Remove-AppxPackage

# OneNote
Get-AppxPackage *onenote* | Remove-AppxPackage

# Skype
Get-AppxPackage *skypeapp* | Remove-AppxPackage

# Tips
Get-AppxPackage *getstarted* | Remove-AppxPackage

# Weather
Get-AppxPackage *bingweather* | Remove-AppxPackage

# Xbox
Get-AppxPackage *xboxapp* | Remove-AppxPackage
Enter fullscreen mode Exit fullscreen mode

Postmark Image

Speedy emails, satisfied customers

Are delayed transactional emails costing you user satisfaction? Postmark delivers your emails almost instantly, keeping your customers happy and connected.

Sign up

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

Discover a treasure trove of wisdom within this insightful piece, highly respected in the nurturing DEV Community enviroment. Developers, whether novice or expert, are encouraged to participate and add to our shared knowledge basin.

A simple "thank you" can illuminate someone's day. Express your appreciation in the comments section!

On DEV, sharing ideas smoothens our journey and strengthens our community ties. Learn something useful? Offering a quick thanks to the author is deeply appreciated.

Okay