-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcpl2Def.pas
142 lines (134 loc) · 4.17 KB
/
cpl2Def.pas
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{ CustomMenu
Copyright (C) 2022 Baz Cuda
https://github.com/BazzaCuda/CustomMenu
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA
}
unit cpl2Def;
interface
const
cpl2NameArray: TArray<string> = [
'ActionCenter',
'Administrative Tools',
'AutoPlay',
'Biometric Devices',
'Bitlocker Drive Encryption',
'Color Management',
'Credential Manager',
'Date and Time',
'Default Programs',
'Device Manager',
'Devices and Printers',
'Display',
'Ease of Access Center',
'Family Safety',
'File History',
'Folder Options',
'Fonts',
'HomeGroup',
'Indexing Options',
'Infrared',
'Internet Options',
'iSCSI Initiator',
'iSNS Server',
'Keyboard',
'Language',
'Location Settings',
'Mouse',
'MPIOConfiguration',
'Network and Sharing Center',
'Notification Area Icons',
'Pen and Touch',
'Personalization',
'Phone and Modem',
'Power Options',
'Programs and Features',
'Recovery',
'Region',
'RemoteApp and Desktop Connections',
'Sound',
'Speech Recognition',
'Storage Spaces',
'Sync Center',
'System',
'Tablet PC Settings',
'Taskbar and Navigation',
'Troubleshooting',
'TSAppInstall',
'User Accounts',
'Windows Anytime Upgrade',
'Windows Defender',
'Windows Firewall',
'Windows Mobility Center',
'Windows To Go',
'Windows Update',
'Work Folders'
];
cpl2CmdArray: TArray<string> = [
'/name Microsoft.ActionCenter',
'/name Microsoft.AdministrativeTools',
'/name Microsoft.AutoPlay',
'/name Microsoft.BiometricDevices',
'/name Microsoft.BitLockerDriveEncryption',
'/name Microsoft.ColorManagement',
'/name Microsoft.CredentialManager',
'/name Microsoft.DateAndTime',
'/name Microsoft.DefaultPrograms',
'/name Microsoft.DeviceManager',
'/name Microsoft.DevicesAndPrinters',
'/name Microsoft.Display',
'/name Microsoft.EaseOfAccessCenter',
'/name Microsoft.ParentalControls',
'/name Microsoft.FileHistory',
'/name Microsoft.FolderOptions',
'/name Microsoft.Fonts',
'/name Microsoft.HomeGroup',
'/name Microsoft.IndexingOptions',
'/name Microsoft.Infrared',
'/name Microsoft.InternetOptions',
'/name Microsoft.iSCSIInitiator',
'/name Microsoft.iSNSServer',
'/name Microsoft.Keyboard',
'/name Microsoft.Language',
'/name Microsoft.LocationSettings',
'/name Microsoft.Mouse',
'/name Microsoft.MPIOConfiguration',
'/name Microsoft.NetworkAndSharingCenter',
'/name Microsoft.NotificationAreaIcons',
'/name Microsoft.PenAndTouch',
'/name Microsoft.Personalization',
'/name Microsoft.PhoneAndModem',
'/name Microsoft.PowerOptions',
'/name Microsoft.ProgramsAndFeatures',
'/name Microsoft.Recovery',
'/name Microsoft.RegionAndLanguage',
'/name Microsoft.RemoteAppAndDesktopConnections',
'/name Microsoft.Sound',
'/name Microsoft.SpeechRecognition',
'/name Microsoft.StorageSpaces',
'/name Microsoft.SyncCenter',
'/name Microsoft.System',
'/name Microsoft.TabletPCSettings',
'/name Microsoft.Taskbar',
'/name Microsoft.Troubleshooting',
'/name Microsoft.TSAppInstall',
'/name Microsoft.UserAccounts',
'/name Microsoft.WindowsAnytimeUpgrade',
'/name Microsoft.WindowsDefender',
'/name Microsoft.WindowsFirewall',
'/name Microsoft.MobilityCenter',
'/name Microsoft.PortableWorkspaceCreator',
'/name Microsoft.WindowsUpdate',
'/name Microsoft.WorkFolders'
];
implementation
end.