-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdelete.ps1
83 lines (56 loc) · 2.14 KB
/
delete.ps1
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#Odinstaluj Cestovani:
Get-AppxPackage -name "Microsoft.BingTravel" | Remove-AppxPackage
#Odinstaluj Finance:
Get-AppxPackage *bingfinance* | Remove-AppxPackage
#Odinstaluj 3D Builder:
Get-AppxPackage *3dbuilder* | Remove-AppxPackage
#Odinstaluj Alarms and Clock:
Get-AppxPackage *windowsalarms* | Remove-AppxPackage
#Odinstaluj Calculator:
Get-AppxPackage *windowscalculator* | Remove-AppxPackage
#Odinstaluj Calendar and Mail:
Get-AppxPackage *windowscommunicationsapps* | Remove-AppxPackage
#Odinstaluj Camera:
Get-AppxPackage *windowscamera* | Remove-AppxPackage
#Odinstaluj Get Office:
Get-AppxPackage *officehub* | Remove-AppxPackage
#Odinstaluj Get Skype:
Get-AppxPackage *skypeapp* | Remove-AppxPackage
#Odinstaluj Get Started:
Get-AppxPackage *getstarted* | Remove-AppxPackage
#Odinstaluj Groove Music:
Get-AppxPackage *zunemusic* | Remove-AppxPackage
#Odinstaluj Maps:
Get-AppxPackage *windowsmaps* | Remove-AppxPackage
#Odinstaluj Microsoft Solitaire Collection:
Get-AppxPackage *solitairecollection* | Remove-AppxPackage
#Odinstaluj Money:
Get-AppxPackage *bingfinance* | Remove-AppxPackage
#Odinstaluj Movies & TV:
Get-AppxPackage *zunevideo* | Remove-AppxPackage
#Odinstaluj News:
Get-AppxPackage *bingnews* | Remove-AppxPackage
#Odinstaluj OneNote:
Get-AppxPackage *onenote* | Remove-AppxPackage
#Odinstaluj People:
Get-AppxPackage *people* | Remove-AppxPackage
#Odinstaluj Phone Companion:
Get-AppxPackage *windowsphone* | Remove-AppxPackage
#Odinstaluj Photos:
Get-AppxPackage *photos* | Remove-AppxPackage
#Odinstaluj Store:
Get-AppxPackage *windowsstore* | Remove-AppxPackage
#Odinstaluj Sports:
Get-AppxPackage *bingsports* | Remove-AppxPackage
#Odinstaluj Voice Recorder:
Get-AppxPackage *soundrecorder* | Remove-AppxPackage
#Odinstaluj Weather:
Get-AppxPackage *bingweather* | Remove-AppxPackage
#Odinstaluj Stickynotes:
Get-AppxPackage *stickynotes* | Remove-AppPackage
#Odinstaluj Xbox:
Get-AppxPackage *xboxapp* | Remove-AppxPackage
#Odinstaluj OneDrive:
ps onedrive | Stop-Process -Force
start-process "$env:windir\SysWOW64\OneDriveSetup.exe" "/uninstall"
pause