-
Notifications
You must be signed in to change notification settings - Fork 11
/
StoreApps.cs
73 lines (71 loc) · 2.61 KB
/
StoreApps.cs
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
using System.Collections.Generic;
namespace Chemo.Data
{
public static class StoreApps
{
private static readonly HashSet<string> AppsToRemove = new HashSet<string>
{
"46928bounde.EclipseManager",
"828B5831.HiddenCityMysteryofShadows",
"A278AB0D.DragonManiaLegends",
"ActiproSoftwareLLC.562882FEEB491",
"AdobeSystemsIncorporated.AdobePhotoshopExpress",
"D5EA27B7.Duolingo-LearnLanguagesforFree",
"Fitbit.FitbitCoach",
"king.com.BubbleWitch3Saga",
"king.com.CandyCrushSaga",
"king.com.CandyCrushSodaSaga",
"king.com.FarmHeroesSaga",
"Microsoft.3DBuilder",
"Microsoft.BingFinance",
"Microsoft.BingFoodAndDrink",
"Microsoft.BingHealthAndFitness",
"Microsoft.BingNews",
"Microsoft.BingSports",
"Microsoft.BingTravel",
"Microsoft.BingWeather",
"Microsoft.DesktopAppInstaller",
"Microsoft.FreshPaint",
"Microsoft.GetHelp",
"Microsoft.Getstarted",
"Microsoft.Messaging",
"Microsoft.Microsoft3DViewer",
"Microsoft.MicrosoftOfficeHub",
"Microsoft.MicrosoftPowerBIForWindows",
"Microsoft.MicrosoftSolitaireCollection",
"Microsoft.MicrosoftStickyNotes",
"Microsoft.MinecraftUWP",
"Microsoft.MSPaint",
"Microsoft.NetworkSpeedTest",
"Microsoft.Office.OneNote",
"Microsoft.Office.Sway",
"Microsoft.OneConnect",
"Microsoft.People",
"Microsoft.Print3D",
"Microsoft.SkypeApp",
"Microsoft.Wallet",
"Microsoft.WindowsAlarms",
"Microsoft.WindowsCamera",
"microsoft.windowscommunicationsapps",
"Microsoft.WindowsFeedbackHub",
"Microsoft.WindowsMaps",
"Microsoft.WindowsSoundRecorder",
"Microsoft.Xbox.TCUI",
"Microsoft.XboxApp",
"Microsoft.XboxGameOverlay",
"Microsoft.XboxGamingOverlay",
"Microsoft.XboxIdentityProvider",
"Microsoft.XboxSpeechToTextOverlay",
"Microsoft.ZuneMusic",
"Microsoft.ZuneVideo",
"Nordcurrent.CookingFever",
"NORDCURRENT.COOKINGFEVER",
"PandoraMediaInc.29680B314EFC2",
"ThumbmunkeysLtd.PhototasticCollage"
};
public static bool ShouldRemove(string packageName)
{
return AppsToRemove.Contains(packageName);
}
}
}