Linux und Windows HelpDesk

Vorinstallierte Apps in Windows 10/11 deinstallieren.

Windows 10 und Windows 11 bringen eine ganze Reihe an Apps mit, von denen man sicher nicht alle benötigt.
Einige dieser Apps lassen sich ganz normal über Einstellungen → Apps → Apps & Features deinstallieren, bei anderen ist dies hingegen nicht so einfach möglich.

Ein recht einfacher Weg diese Apps dennoch zu deinstallieren und vor allem, ohne erneut eine App zu installieren um damit dann andere Apps zu deinstallieren, geht über die PowerShell.

Man geht zunächst über das Startmenü zur Windows PowerShell bzw. tippt einfach in die Suchzeile powerschell ein und starten diese per Rechtsklick mit "Als Administrator ausführen".

Nun kann man sich zunächst alle installierten Apps auflisten lassen.

PS C:\WINDOWS\system32> Get-AppxPackage | Sort Name | Select Name, InstallLocation

Name                                  InstallLocation
----                                  ---------------
Microsoft.AAD.BrokerPlugin            C:\Windows\SystemApps\Microsoft.AAD.BrokerPlugin_cw5n1h2txyewy
Microsoft.AccountsControl             C:\Windows\SystemApps\Microsoft.AccountsControl_cw5n1h2txyewy
Microsoft.Advertising.JavaScript      C:\Program Files\WindowsApps\Microsoft.Advertising.JavaScript_10.1805.2.0_x64__8wekyb3d8bbwe
Microsoft.BingWeather                 C:\Program Files\WindowsApps\Microsoft.BingWeather_4.46.32012.0_x64__8wekyb3d8bbwe
Microsoft.BioEnrollment               C:\Windows\SystemApps\Microsoft.BioEnrollment_cw5n1h2txyewy
Microsoft.CredDialogHost              C:\Windows\SystemApps\microsoft.creddialoghost_cw5n1h2txyewy
Microsoft.DesktopAppInstaller         C:\Program Files\WindowsApps\Microsoft.DesktopAppInstaller_1.17.10271.0_x64__8wekyb3d8bbwe
Microsoft.ECApp                       C:\Windows\SystemApps\Microsoft.ECApp_8wekyb3d8bbwe
Microsoft.Getstarted                  C:\Program Files\WindowsApps\Microsoft.Getstarted_10.2203.11.0_x64__8wekyb3d8bbwe
Microsoft.HEIFImageExtension          C:\Program Files\WindowsApps\Microsoft.HEIFImageExtension_1.0.43012.0_x64__8wekyb3d8bbwe
Microsoft.LanguageExperiencePackde-DE C:\Program Files\WindowsApps\Microsoft.LanguageExperiencePackde-DE_19041.41.130.0_neutral__8wekyb3d8bbwe
Microsoft.LockApp                     C:\Windows\SystemApps\Microsoft.LockApp_cw5n1h2txyewy
Microsoft.MicrosoftEdge               C:\Windows\SystemApps\Microsoft.MicrosoftEdge_8wekyb3d8bbwe
Microsoft.MicrosoftEdge.Stable        C:\Program Files\WindowsApps\Microsoft.MicrosoftEdge.Stable_100.0.1185.44_neutral__8wekyb3d8bbwe
Microsoft.MicrosoftEdgeDevToolsClient C:\Windows\SystemApps\Microsoft.MicrosoftEdgeDevToolsClient_8wekyb3d8bbwe
Microsoft.MicrosoftStickyNotes        C:\Program Files\WindowsApps\Microsoft.MicrosoftStickyNotes_4.5.0.0_x64__8wekyb3d8bbwe
Microsoft.MSPaint                     C:\Program Files\WindowsApps\Microsoft.MSPaint_6.2203.1037.0_x64__8wekyb3d8bbwe
Microsoft.SkypeApp                    C:\Program Files\WindowsApps\Microsoft.SkypeApp_15.82.404.0_x86__kzf8qxf38zg5c
...

Interessant ist hier die Spalte "Name" denn mit dem Aufruf Get-AppxPackage *PROGRAMM* | Remove-AppxPackage können die jeweiligen Programme deinstalliert werden.

Je nach Windows-Version sind mehr oder weniger Apps vorhanden, hier nur eine Auswahl.

Zu deinstallierende App PowerShell-Befehl zum deinstallieren
3D Builder Get-AppxPackage *3dbuilder* | Remove-AppxPackage
Alarm und Uhr Get-AppxPackage *windowsalarms* | Remove-AppxPackage
Asphalt 8: Airborne Get-AppxPackage *asphalt8airborne* | Remove-AppxPackage
Begleiter für Telefon Get-AppxPackage *windowsphone* | Remove-AppxPackage
Candy Crush Saga Get-AppxPackage *candycrushsaga* | Remove-AppxPackage
Drawboard PDF Get-AppxPackage *drawboardpdf* | Remove-AppxPackage
Erste Schritte Get-AppxPackage *getstarted* | Remove-AppxPackage
Facebook Get-AppxPackage *facebook* | Remove-AppxPackage
Feedback Hub Get-AppxPackage *feedback* | Remove-AppxPackage
Filme & TV Get-AppxPackage *zunevideo* | Remove-AppxPackage
Finanzen Get-AppxPackage *bingfinance* | Remove-AppxPackage
Fotos Get-AppxPackage *photos* | Remove-AppxPackage
Groove-Musik Get-AppxPackage *zunemusic* | Remove-AppxPackage
Hilfe Anfordern Get-AppxPackage *gethelp | Remove-AppxPackage
Kalender & Mail Get-AppxPackage *communicationsapps* | Remove-AppxPackage
Kamera Get-AppxPackage *windowscamera* | Remove-AppxPackage
Karten Get-AppxPackage *windowsmaps* | Remove-AppxPackage
Kontakte Get-AppxPackage *people* | Remove-AppxPackage
Microsoft Solitaire Collection Get-AppxPackage *solitairecollection* | Remove-AppxPackage
Nachrichten Get-AppxPackage *bingnews* | Remove-AppxPackage
Nachrichten & Skype Get-AppxPackage *messaging* | Remove-AppxPackage
Office holen Get-AppxPackage *officehub* | Remove-AppxPackage
OneNote Get-AppxPackage *onenote* | Remove-AppxPackage
Paint 3D Get-AppxPackage *mspaint* | Remove-AppxPackage
Rechner Get-AppxPackage *windowscalculator* | Remove-AppxPackage
Skype Get-AppxPackage *skypeapp* | Remove-AppxPackage
Sport Get-AppxPackage *bingsports* | Remove-AppxPackage
Sprachrekorder Get-AppxPackage *soundrecorder* | Remove-AppxPackage
Sticky Notes Get-AppxPackage *soundrecorder* | Remove-AppxPackage
Windows 11 Widgets Get-AppxPackage *webexperience* | Remove-AppxPackage
Windows DVD Player Get-AppxPackage *dvd* | Remove-AppxPackage
Xbox Identity Provider Get-AppxPackage *xboxidentityprovider* | Remove-AppxPackage
Xbox Get-AppxPackage *xboxapp* | Remove-AppxPackage

Mit folgendem Aufruf können alle vorinstallierten Apps wieder installiert werden.

PS C:\WINDOWS\system32> Get-AppxPackage -allusers | foreach {Add-AppxPackage -register "$($_.InstallLocation)\appxmanifest.xml" -DisableDevelopmentMod}