Benutzer mit den meisten Antworten
Windows 10, Apps entfernen

Frage
-
wenn wir mehrere Apps auf einmal entfernen möchten bleiben immer ein paar erhalten
selben Problem wenn man es über Get-AppxPackage *OneNote* | Remove-AppxPackage entfernt.
Remove-AppxPackage -Package Microsoft.BingFinance_4.4.200.0_x86__8wekyb3d8bbw
Remove-AppxPackage -Package Microsoft.XboxApp_8.8.15003.0_x64__8wekyb3d8bbwe
Remove-AppxPackage -Package Microsoft.WindowsStore_2015.8.25.0_x64__8wekyb3d8bbwe
Remove-AppxPackage -Package Microsoft.3DBuilder_10.1.9.0_x64__8wekyb3d8bbwe
Remove-AppxPackage -Package Microsoft.WindowsCamera_5.54.3001.0_x64__8wekyb3d8bbwe
Remove-AppxPackage -Package Microsoft.ZuneMusic_3.6.12711.0_x64__8wekyb3d8bbwe
Remove-AppxPackage -Package Microsoft.WindowsPhone_10.1508.17010.0_x64__8wekyb3d8bbwe
Remove-AppxPackage -Package Microsoft.MicrosoftSolitaireCollection_3.3.8040.0_x64__8wekyb3d8bbwe
Remove-AppxPackage -Package Microsoft.BingSports_4.5.168.0_x86__8wekyb3d8bbwe
Remove-AppxPackage -Package Microsoft.Office.OneNote_17.6131.10021.0_x64__8wekyb3d8bbwe
Remove-AppxPackage -Package Microsoft.SkypeApp_3.2.1.0_x86__kzf8qxf38zg5c
Chris
Antworten
-
Hallo Chris,
starte mal als Administrator und nutze das -AllUsers und Verbose-Flag.
Get-AppxPackage -AllUsers *Solit* | Remove-AppxPackage -Verbose
Das Deinstallieren dauert auch nen Moment.
Nach dem Deinstallieren sauber neustarten und mal prüfen, ob es noch da ist. Wenn es sich nicht deinstallieren lässt, wirft es eigentlich auch irgendeine Meldung.
Best regards,
David das Neves
Technology Specialist - Consulting Services
Computacenter AG & Co. oHG - Munich
Blog
Caution: This post was written with the intention to help and may contain errors.
If my post was helpful or answered your question please mark it respectively. Thanks.- Bearbeitet David das Neves Dienstag, 15. September 2015 17:44
- Als Antwort markiert -- Chris -- Montag, 21. September 2015 05:13
Alle Antworten
-
Hi Chris,
willst Du eine bestimmte App deinstallieren oder alle?
Wenn Du bei Deinem Befehl als Parameter *OneNote* angibst, werden logischerweise nur Apps deinstalliert, bei denen irgendwo "OneNote" drin steht.
Ansonsten könntest Du es auch wie folgt probieren, wenn Du WIRKLICH ALLES deinstallieren willst:
Get-AppXPackage | Remove-AppXPackage Get-AppXPackage -AllUsers | Remove-AppXPackage -AllUsers Get-AppXProvisionedPackage | Remove-AppXProvisionedPackage
Damit entfernst Du allerdings auch die Store App und kannst dann keinerlei Apps mehr installieren. Gerade den Taschenrechner haben wir schmerzlich vermisst, da es "calc" unter Windows 10 nicht mehr gibt. ;-)
Gruß
Ben
MCSA Windows 8 (.1) MCSA Windows Server 2012 (R2)
Wenn Dir meine Antwort hilft, markiere sie bitte entsprechend als Antwort! Danke! :-)
Hinweis: Meine Posts werden "wie besehen" ohne jedwede Gewähr bereitgestellt, da menschliche, technische und andere Fehler nicht ausgeschlossen werden können.- Bearbeitet Ben-neB Dienstag, 15. September 2015 13:00
-
nein wir möchten nur bestimmte entfernen. OneNote war nur ein Beispiel, da es mit dieser Variante auch nicht aufs erste Mal geht? Vielleicht braucht man mehr pausen?
irgendwie geht's auch mit unten angeführten nicht auf das erste Mal. Trotz abmelden. zb. war Spiele wieder da?
powershell Set-ExecutionPolicy unrestricted -Scope CurrentUser -force
powershell -f "C:\Scripts\RemoveApps.ps1"
powershell Set-ExecutionPolicy restricted -Scope CurrentUser -force
removeapps.ps1
Get-AppxPackage *3d* | Remove-AppxPackage
Get-AppxPackage *Finance* | Remove-AppxPackage
Get-AppxPackage *Xbox* | Remove-AppxPackage
Get-AppxPackage *Store* | Remove-AppxPackage
Get-AppxPackage *Camera* | Remove-AppxPackage
Get-AppxPackage *Zune* | Remove-AppxPackage
Get-AppxPackage *Phone* | Remove-AppxPackage
Get-AppxPackage *Solit* | Remove-AppxPackage
Get-AppxPackage *OneNote* | Remove-AppxPackage
Get-AppxPackage *Sport* | Remove-AppxPackage
Get-AppxPackage *Skype* | Remove-AppxPackageChris
-
Hallo Chris,
starte mal als Administrator und nutze das -AllUsers und Verbose-Flag.
Get-AppxPackage -AllUsers *Solit* | Remove-AppxPackage -Verbose
Das Deinstallieren dauert auch nen Moment.
Nach dem Deinstallieren sauber neustarten und mal prüfen, ob es noch da ist. Wenn es sich nicht deinstallieren lässt, wirft es eigentlich auch irgendeine Meldung.
Best regards,
David das Neves
Technology Specialist - Consulting Services
Computacenter AG & Co. oHG - Munich
Blog
Caution: This post was written with the intention to help and may contain errors.
If my post was helpful or answered your question please mark it respectively. Thanks.- Bearbeitet David das Neves Dienstag, 15. September 2015 17:44
- Als Antwort markiert -- Chris -- Montag, 21. September 2015 05:13
-
Ist dein Problem gelöst, Chris?
Grüße, Denniver
Blog: http://bytecookie.wordpress.com
Kostenloser Powershell Snippet Manager v4: Link ! Neue Version !
(Schneller, besser + komfortabler scripten.)
Hilf mit und markiere hilfreiche Beiträge mit dem "Abstimmen"-Button (links) und Beiträge die eine Frage von dir beantwortet haben, als "Antwort" (unten).
Warum das Ganze? Hier gibts die Antwort. -
Hallo zusammen,
ich habe ebenfalls ein Problem mit dem deinstallieren der Windows 10 Apps. Da ich diese nicht dauerhaft entfernen möchte, verwende ich folgenden Befehl um folgende Apps zu deinstallieren.
Get-AppxPackage -AllUsers *3D* | Remove-AppxPackage -Verbose Get-AppxPackage -AllUsers *Bing* | Remove-AppxPackage -Verbose Get-AppxPackage -AllUsers *Office* | Remove-AppxPackage -Verbose Get-AppxPackage -AllUsers *People* | Remove-AppxPackage -Verbose Get-AppxPackage -AllUsers *SkypeApp* | Remove-AppxPackage -Verbose Get-AppxPackage -AllUsers *WindowsMaps* | Remove-AppxPackage -Verbose Get-AppxPackage -AllUsers *Xbox* | Remove-AppxPackage -Verbose Get-AppxPackage -AllUsers *Zune* | Remove-AppxPackage -Verbose Get-AppxPackage -AllUsers *Getstarted* | Remove-AppxPackage -Verbose Get-AppxPackage -AllUsers *communicationsapps* | Remove-AppxPackage -Verbose Get-AppxPackage -AllUsers *Phone* | Remove-AppxPackage -Verbose Get-AppxPackage -AllUsers *Solit* | Remove-AppxPackage -Verbose Get-AppxPackage -AllUsers *VCLibs.12* | Remove-AppxPackage -Verbose Get-AppxPackage -AllUsers *Store* | Remove-AppxPackage -Verbose Get-AppxPackage -AllUsers *Finance* | Remove-AppxPackage -Verbose
Zum einen werden die Apps durch den Befehl -AllUsers nicht für alle benutzer deinstalliert, weshalb ich das ganze noch einmal unter dem Benutzer (ohne -AllUsers) ausgeführt habe.
Get-AppxPackage *3D* | Remove-AppxPackage -Verbose Get-AppxPackage *Bing* | Remove-AppxPackage -Verbose Get-AppxPackage *Office* | Remove-AppxPackage -Verbose Get-AppxPackage *People* | Remove-AppxPackage -Verbose Get-AppxPackage *SkypeApp* | Remove-AppxPackage -Verbose Get-AppxPackage *WindowsMaps* | Remove-AppxPackage -Verbose Get-AppxPackage *Xbox* | Remove-AppxPackage -Verbose Get-AppxPackage *Zune* | Remove-AppxPackage -Verbose Get-AppxPackage *Getstarted* | Remove-AppxPackage -Verbose Get-AppxPackage *communicationsapps* | Remove-AppxPackage -Verbose Get-AppxPackage *Phone* | Remove-AppxPackage -Verbose Get-AppxPackage *Solit* | Remove-AppxPackage -Verbose Get-AppxPackage *VCLibs.12* | Remove-AppxPackage -Verbose Get-AppxPackage *Store* | Remove-AppxPackage -Verbose Get-AppxPackage *Finance* | Remove-AppxPackage -Verbose
Jedoch muss ich das ganze drei Mal mit jeweils einem Neustart durchführen bis alle Apps deinstalliert wurden. Gibt es evtl. eine bestimmte Reihenfolge hierfür bzw. wie kann ich dies auf einmal für alle Benutzer anwenden? -
du kannst du Apps auch zuverlässig mittels DISM (das ist sozusagen die Systemsteuerung - Programme) entfernen
dism /online /remove-provisionedappxpackage /Packagename:Microsoft.3DBuilder_2015.624.2254.0_neutral_~_8wekyb3d8bbwe
dism /online /remove-provisionedappxpackage /Packagename:Microsoft.BingFinance_10004.3.193.0_neutral_~_8wekyb3d8bbwe
dism /online /remove-provisionedappxpackage /Packagename:Microsoft.WindowsStore_2015.701.14.0_neutral_~_8wekyb3d8bbwe
dism /online /remove-provisionedappxpackage /Packagename:Microsoft.WindowsCamera_2015.612.1501.0_neutral_~_8wekyb3d8bbwe
dism /online /remove-provisionedappxpackage /Packagename:Microsoft.ZuneMusic_2019.6.10841.0_neutral_~_8wekyb3d8bbwe
dism /online /remove-provisionedappxpackage /Packagename:Microsoft.ZuneVideo_2019.6.10811.0_neutral_~_8wekyb3d8bbwe
dism /online /remove-provisionedappxpackage /Packagename:Microsoft.WindowsPhone_2015.620.10.0_neutral_~_8wekyb3d8bbwe
dism /online /remove-provisionedappxpackage /Packagename:Microsoft.MicrosoftSolitaireCollection_3.1.6103.0_neutral_~_8wekyb3d8bbwe
dism /online /remove-provisionedappxpackage /Packagename:Microsoft.Office.OneNote_2015.4201.10091.0_neutral_~_8wekyb3d8bbwe
dism /online /remove-provisionedappxpackage /Packagename:Microsoft.BingSports_10004.3.193.0_neutral_~_8wekyb3d8bbwe
dism /online /remove-provisionedappxpackage /Packagename:Microsoft.SkypeApp_3.2.1.0_neutral_~_kzf8qxf38zg5c
dism /online /remove-provisionedappxpackage /Packagename:microsoft.windowscommunicationsapps_2015.6002.42251.0_neutral_~_8wekyb3d8bbwe
dism /online /remove-provisionedappxpackage /Packagename:Microsoft.XboxApp_2015.617.130.0_neutral_~_8wekyb3d8bbwe
dism /online /remove-provisionedappxpackage /Packagename:Microsoft.People_2015.627.626.0_neutral_~_8wekyb3d8bbweChris