Post

Windows 11 plusz alkalmazások eltávolítása

Windows 11 megjelent, juppí, de mindig vannak olyan alkalmazások, amiket Én nem szeretek, ha céges gépen vannak. Futtatás powershellben le is szedi őket gyorsan:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
Get-AppxPackage -Name Microsoft.Getstarted | Remove-AppxPackage 

Get-AppxPackage -Name Microsoft.XboxIdentityProvider | Remove-AppxPackage 

Get-AppxPackage -Name MicrosoftTeams | Remove-AppxPackage 

Get-AppxPackage -Name Microsoft.ZuneVideo | Remove-AppxPackage 

Get-AppxPackage -Name Microsoft.OneDriveSync | Remove-AppxPackage 

Get-AppxPackage -Name Microsoft.WindowsAlarms | Remove-AppxPackage 

Get-AppxPackage -Name Microsoft.ZuneMusic | Remove-AppxPackage 

Get-AppxPackage -Name Microsoft.YourPhone | Remove-AppxPackage 

Get-AppxPackage -Name Microsoft.XboxSpeechToTextOverlay | Remove-AppxPackage 

Get-AppxPackage -Name Microsoft.XboxGamingOverlay| Remove-AppxPackage 

Get-AppxPackage -Name Microsoft.XboxGameOverlay| Remove-AppxPackage 

Get-AppxPackage -Name Microsoft.Xbox.TCUI| Remove-AppxPackage 

Get-AppxPackage -Name Microsoft.WindowsSoundRecorder| Remove-AppxPackage 

Get-AppxPackage -Name Microsoft.WindowsMaps| Remove-AppxPackage 

Get-AppxPackage -Name Microsoft.WindowsFeedbackHub| Remove-AppxPackage 

Get-AppxPackage -Name Microsoft.Todos| Remove-AppxPackage 

Get-AppxPackage -Name Microsoft.PowerAutomateDesktop| Remove-AppxPackage 

Get-AppxPackage -Name Microsoft.People| Remove-AppxPackage 

Get-AppxPackage -Name Microsoft.MicrosoftOfficeHub| Remove-AppxPackage 

Get-AppxPackage -Name Microsoft.GetHelp| Remove-AppxPackage 

Get-AppxPackage -Name Microsoft.GamingApp| Remove-AppxPackage 

Get-Appxpackage -Name *bing* | Remove-AppxPackage 

##Cortana
Get-AppxPackage Microsoft.549981C3F5F10 | Remove-AppxPackage 

-AllUsers kapcsolóval hiába szedtem le, egy köv windows update pl teams home-ot visszarakja, így legalább nem látom magamnál :’(

This post is licensed under CC BY 4.0 by the author.