Powershell for remove app in win.
by boar - Wednesday August 7, 2024 at 10:22 PM
#1
Hi,

Today share an information about remove app in win10/11.

First run powershell like admin.

Check the App that you want delete. (Only show the most common, maybe some will be repeat).

Uninstall 3D Viewer:
Get-AppxPackage Microsoft.Microsoft3DViewer | Remove-AppxPackage

Uninstall Calculator:
Get-AppxPackage *windowscalculator* | Remove-AppxPackage

Uninstall 3D Builder:
Get-AppxPackage *3dbuilder* | Remove-AppxPackage

Uninstall Calendar and Mail:
Get-AppxPackage *windowscommunicationsapps* | Remove-AppxPackage

Uninstall Alarms and Clock:
Get-AppxPackage *windowsalarms* | Remove-AppxPackage

Uninstall Camera:
Get-AppxPackage *windowscamera* | Remove-AppxPackage

Uninstall Get Office:
Get-AppxPackage *officehub* | Remove-AppxPackage

Uninstall Get Help
Get-AppxPackage *Microsoft.GetHelp* -AllUsers | Remove-AppxPackage

Uninstall Get Started:
Get-AppxPackage *getstarted* | Remove-AppxPackage

Uninstall Get Skype:
Get-AppxPackage *skypeapp* | Remove-AppxPackage

Uninstall Groove Music:
Get-AppxPackage *zunemusic* | Remove-AppxPackage

Uninstall Maps:
Get-AppxPackage *windowsmaps* | Remove-AppxPackage

Uninstall Microsoft Solitaire Collection:
Get-AppxPackage *solitairecollection* | Remove-AppxPackage

Uninstall Money:
Get-AppxPackage *bingfinance* | Remove-AppxPackage

Uninstall Movies & TV:
Get-AppxPackage *zunevideo* | Remove-AppxPackage

Uninstall News:
Get-AppxPackage *bingnews* | Remove-AppxPackage

Uninstall OneNote:
Get-AppxPackage *onenote* | Remove-AppxPackage

Uninstall People:
Get-AppxPackage *people* | Remove-AppxPackage

Uninstall Phone Companion:
Get-AppxPackage *windowsphone* | Remove-AppxPackage

Uninstall Photos:
Get-AppxPackage *photos* | Remove-AppxPackage

Uninstall Sports:
Get-AppxPackage *bingsports* | Remove-AppxPackage

Uninstall Store:
Get-AppxPackage *windowsstore* | Remove-AppxPackage

Uninstall Voice Recorder:
Get-AppxPackage *soundrecorder* | Remove-AppxPackage

Uninstall Weather:
Get-AppxPackage *bingweather* | Remove-AppxPackage

Uninstall Xbox:
Get-AppxPackage *xboxapp* | Remove-AppxPackage


    Uninstall 3D Builder: Get-AppxPackage *3dbuilder* | Remove-AppxPackage
    Uninstall ACG Player: Get-AppxPackage *acg* | Remove-AppxPackage
    Uninstall Alarms and Clock: Get-AppxPackage *alarms* | Remove-AppxPackage
    Uninstall AV1 Codec: Get-AppxPackage *AV1VideoExtension* | Remove-AppxPackage
    Uninstall Calculator: Get-AppxPackage *calculator* | Remove-AppxPackage
    Uninstall Calendar and Mail: Get-AppxPackage *communications* | Remove-AppxPackage
    Uninstall Cortana: Get-AppxPackage *Microsoft.549981C3F5F10* | Remove-AppxPackage
    Uninstall Camera: Get-AppxPackage *camera* | Remove-AppxPackage
    Uninstall Disney+: Get-AppxPackage *disney* | Remove-AppxPackage
    Uninstall Dolby Access: Get-AppxPackage *dolbyaccess* | Remove-AppxPackage
    Uninstall Feedback Hub: Get-AppxPackage *WindowsFeedbackHub* | Remove-AppxPackage
    Uninstall Fitbit Coach: Get-AppxPackage *fitbitcoach* | Remove-AppxPackage
    Uninstall Office: Get-AppxPackage *officehub* | Remove-AppxPackage
    Uninstall Get Started: Get-AppxPackage *getstarted* | Remove-AppxPackage
    Uninstall Music: Get-AppxPackage *zunemusic* | Remove-AppxPackage
    Uninstall HEIF image support: Get-AppxPackage *HEIFImageExtension* | Remove-AppxPackage
    Uninstall Get Help: Get-AppxPackage *GetHelp* | Remove-AppxPackage
    Uninstall Maps: Get-AppxPackage *maps* | Remove-AppxPackage
    Uninstall Microsoft Edge: Get-AppxPackage *MicrosoftEdge* | Remove-AppxPackage
    Uninstall Microsoft Solitaire Collection: Get-AppxPackage *solitairecollection* | Remove-AppxPackage
    Uninstall Microsoft To-Do: Get-AppxPackage *Todos* | Remove-AppxPackage
    Uninstall Microsoft Teams: Get-AppxPackage *Teams* | Remove-AppxPackage
    Uninstall Money: Get-AppxPackage *bingfinance* | Remove-AppxPackage
    Uninstall Movies & TV: Get-AppxPackage *zunevideo* | Remove-AppxPackage
    Uninstall News: Get-AppxPackage *bingnews* | Remove-AppxPackage
    Uninstall Notepad: Get-AppxPackage *WindowsNotepad* | Remove-AppxPackage
    Uninstall OneNote: Get-AppxPackage *onenote* | Remove-AppxPackage
    Uninstall OneDrive: Get-AppxPackage *OneDriveSync* | Remove-AppxPackage
    Uninstall Paint: Get-AppxPackage *Paint* | Remove-AppxPackage
    Uninstall People: Get-AppxPackage *people* | Remove-AppxPackage
    Uninstall Phone Companion: Get-AppxPackage *windowsphone* | Remove-AppxPackage
    Uninstall Phototastic Collage: Get-AppxPackage *phototastic* | Remove-AppxPackage
    Uninstall Photos: Get-AppxPackage *photos* | Remove-AppxPackage
    Uninstall PicsArt: Get-AppxPackage *picsart* | Remove-AppxPackage
    Uninstall Plex: Get-AppxPackage *plex* | Remove-AppxPackage
    Uninstall PowerAutomate: Get-AppxPackage *PowerAutomateDesktop* | Remove-AppxPackage
    Uninstall Screen and Sketch/Snipping Tool: Get-AppxPackage *ScreenSketch* | Remove-AppxPackage
    Uninstall Skype: Get-AppxPackage *skypeapp* | Remove-AppxPackage
    Uninstall Store: Get-AppxPackage *windowsstore* | Remove-AppxPackage
    Uninstall Sticky Notes: Get-AppxPackage *MicrosoftStickyNotes* | Remove-AppxPackage
    Uninstall Spotify: Get-AppxPackage *SpotifyMusic* | Remove-AppxPackage
    Uninstall Sports: Get-AppxPackage *bingsports* | Remove-AppxPackage
    Uninstall Voice Recorder: Get-AppxPackage *soundrecorder* | Remove-AppxPackage
    Uninstall Weather: Get-AppxPackage *bingweather* | Remove-AppxPackage
    Uninstall WebP image support: Get-AppxPackage *WebpImageExtension* | Remove-AppxPackage
    Uninstall Windows Terminal: Get-AppxPackage *WindowsTerminal* | Remove-AppxPackage
    Uninstall Xbox: Get-AppxPackage *xbox* | Remove-AppxPackage
    Uninstall Your Phone: Get-AppxPackage *YourPhone* | Remove-AppxPackage

Sure will be useful in many cases.
Reply
#2
This windows applications sometimes are really annoying. Thanks ))
Reply
#3
Here i simplified it for you
$AppList = @(
"*3dbuilder*
"*acg* Player
"*alarms*
"*AV1VideoExtension*
"*calculator*
"*communications*
"*Microsoft.549981C3F5F10*
"*camera*
"*disney*
"*dolbyaccess*
"*WindowsFeedbackHub*
"*fitbitcoach*
"*officehub*
"*getstarted*
"*zunemusic*
"*HEIFImageExtension*
"*GetHelp*
"*maps*
"*MicrosoftEdge*
"*solitairecollection*
"*Todos*
"*Teams*
"*bingfinance*
"*zunevideo*
"*bingnews*
"*WindowsNotepad*
"*onenote*
"*OneDriveSync*
"*Paint*
"*people*
"*windowsphone*
"*phototastic*
"*photos*
"*picsart*
"*plex*
"*PowerAutomateDesktop*
"*ScreenSketch*
"*skypeapp*
"*windowsstore*
"*MicrosoftStickyNotes*
"*SpotifyMusic*
"*bingsports*
"*soundrecorder*
"*bingweather*
"*WebpImageExtension*
"*WindowsTerminal*
"*xbox*
"*YourPhone*
)

foreach ($App in $AppList) {
Get-AppxPackage -Name $App | Remove-AppxPackage -ErrorAction SilentlyContinue
}
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  PowerShell scripts commands and payloads to Enumerate and manipulate Windows Systems. SSR147 32 8,696 03-16-2025, 11:08 AM
Last Post: SeleniumGPT
  Windows ISO Source, Remove Telemetry & Activation Guide DarkHuntress 2 4,257 10-11-2023, 08:41 PM
Last Post: joepa

Forum Jump:


 Users browsing this thread: