Powershell Skript unnötige App entfernen lassen
Hallo, gibt es auch ein Shell Skript, wo ich unnötige App auf ein frisch installierten Windows 10 pro entfernt, Beispielweise was der Kunde nicht benötigt. Ich möchte nur das drauf lassen, was sich nicht deinstalliert lässt?
Vielen Dank im Voraus.
Bella
Vielen Dank im Voraus.
Bella
Bitte markiere auch die Kommentare, die zur Lösung des Beitrags beigetragen haben
Content-ID: 1740354280
Url: https://administrator.de/contentid/1740354280
Ausgedruckt am: 21.11.2024 um 21:11 Uhr
8 Kommentare
Neuester Kommentar
Servus,
hier sind gute Informationen dazu:
https://sid-500.com/2018/04/02/powershell-how-to-get-a-list-of-all-insta ...
und
https://redmondmag.com/articles/2019/08/27/powershell-to-uninstall-an-ap ...
hier sind gute Informationen dazu:
https://sid-500.com/2018/04/02/powershell-how-to-get-a-list-of-all-insta ...
und
https://redmondmag.com/articles/2019/08/27/powershell-to-uninstall-an-ap ...
Oder alle auf einmal per PowerShell:
https://www.itnator.net/uninstall-windows-apps/
https://www.itnator.net/uninstall-windows-apps/
Hallo @Bella21,
die App 3D Viewer heisst anders.
Gib dir so eine Liste aller installierten Windows Apps aus (Adminsitzung nicht notwendig):
Ausgabe:
Dann kannst Du eine spezifische App entfernen mit:
Als Admin kann man eine App aus allen User-Konten entfernen mit:
Anbei eine Liste an Apps, die ich beim Deployment eines neuen Clients immer laufen lasse:
die App 3D Viewer heisst anders.
Gib dir so eine Liste aller installierten Windows Apps aus (Adminsitzung nicht notwendig):
Get-AppxPackage | select Name
Ausgabe:
...
Microsoft.StorePurchaseApp
Microsoft.Microsoft3DViewer
Microsoft.UI.Xaml.2.7
...
Dann kannst Du eine spezifische App entfernen mit:
Get-AppxPackage -Name "Microsoft.Microsoft3DViewer" | Remove-AppxPackage
Als Admin kann man eine App aus allen User-Konten entfernen mit:
Get-AppxPackage -Name "Microsoft.Microsoft3DViewer" -AllUsers | Remove-AppxPackage
Anbei eine Liste an Apps, die ich beim Deployment eines neuen Clients immer laufen lasse:
Get-AppxPackage -Name "Microsoft.MicrosoftSolitaireCollection" | Remove-AppxPackage
Get-AppxPackage -Name "Microsoft.BingWeather" | Remove-AppxPackage
Get-AppxPackage -Name "Microsoft.GetHelp" | Remove-AppxPackage
Get-AppxPackage -Name "Microsoft.GetStarted" | Remove-AppxPackage
Get-AppxPackage -Name "Microsoft.Microsoft3DViewer" | Remove-AppxPackage
Get-AppxPackage -Name "Microsoft.MicrosoftOfficeHub" | Remove-AppxPackage
Get-AppxPackage -Name "Microsoft.MicrosoftStickyNotes" | Remove-AppxPackage
Get-AppxPackage -Name "Microsoft.OneConnect" | Remove-AppxPackage
Get-AppxPackage -Name "Microsoft.SkypeApp" | Remove-AppxPackage
Get-AppxPackage -Name "Microsoft.windowscommunicationsapps" | Remove-AppxPackage
Get-AppxPackage -Name "Microsoft.WindowsFeedbackHub" | Remove-AppxPackage
Get-AppxPackage -Name "Microsoft.XboxApp" | Remove-AppxPackage
Get-AppxPackage -Name "Microsoft.Xbox.TCUI" | Remove-AppxPackage
Get-AppxPackage -Name "Microsoft.XboxGameOverlay" | Remove-AppxPackage
Get-AppxPackage -Name "Microsoft.XboxGamingOverlay" | Remove-AppxPackage
Get-AppxPackage -Name "Microsoft.XboxIdentityProvider" | Remove-AppxPackage
Get-AppxPackage -Name "Microsoft.XboxIdentityProvide" | Remove-AppxPackage
Get-AppxPackage -Name "Microsoft.XboxSpeechToTextPverlay" | Remove-AppxPackage
Get-AppxPackage -Name "Microsoft.XboxSpeechToTextOverlay" | Remove-AppxPackage
Get-AppxPackage -Name "Microsoft.YourPhone" | Remove-AppxPackage
Get-AppxPackage -Name "XINGAG.XING" | Remove-AppxPackage
Get-AppxPackage -Name "SpotifyAB.SpotifyMusic" | Remove-AppxPackage
Get-AppxPackage -Name "Microsoft.BingNews" | Remove-AppxPackage