Bonjour à tous!

je voudrais mettre en place sur le Bureau et Ordinateur mon propre Menu Contextuel!

J'ai effectué un simple test avec un menu contenant des liens de sous-commandes!
Je constate que je ne peux pas obtenir plus de 17 sous-commandes!

Y aurait-il un plafond limité? quel serait la clefs de registre pour augmenter le nombre?
Nom : _4.jpg
Affichages : 194
Taille : 32,2 Ko

voici mon projet Nom : _1.jpg
Affichages : 190
Taille : 67,0 KoNom : _3.jpg
Affichages : 199
Taille : 14,8 Ko
normalement, je devrais obtenir l'équivalant de ces deux capture d'écran!

voici mon code REG

Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293


Windows Registry Editor Version 5.00

;                             Windows 7 Professionnel Service Pack 1

;===========================================================

;                                                Menu Contextuel

;===========================================================


;              ===================================
;                               Menu Perso
;              ===================================

;=========

;Menu Maitre

;=========

--> Bureau
[HKEY_CLASSES_ROOT\DesktopBackground\Shell\TechWan2003_bur]
"MUIVerb"="TechWan2003"
"Icon"="%windir%\\system32\\LIB.DLL,7"
"Position"="Top"
"ExtendedSubCommandsKey"="Menu_Tech"

;--> Poste de travail
[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\TechWan2003_Ord]
"MUIVerb"="TechWan2003"
"Icon"="%windir%\\system32\\LIB.DLL,7"
"Position"="Top"
"ExtendedSubCommandsKey"="Menu_Tech"


;===============================

;                   Menu_Tech

;Sous-Command & Sous-Menu Menu Maitre

;===============================

;Sous-Command 1 - Menu Maitre
;-------------------------------
[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd01]
"MUIVerb"="Ajout/Suppression de Programmes"
"Icon"="%windir%\\system32\\LIB.DLL,5"
@=""

[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd01\Command]
@="rundll32.exe shell32.dll,Control_RunDLL \"appwiz.cpl\""

;Sous-Command 2 - Menu Maitre
;-------------------------------
[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd02]
"MUIVerb"="Gestionnaire de périphériques"
"Icon"="%windir%\\system32\\LIB.DLL,1"
@=""

[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd02\Command]
@="c:\\windows\\system32\\mmc.exe /s c:\\windows\\system32\\DevMgmt.msc"

;Sous-Command 3 - Menu Maitre
;-------------------------------
[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd03]
"MUIVerb"="Gestionnaire des Disques"
;ligne de séparation vers le bas
;"CommandFlags"=dword:00000040
@=""

[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd03\Command]
@="c:\\windows\\system32\\mmc.exe /s c:\\windows\\system32\\diskmgmt.msc"

;Sous-Command 4 - Menu Maitre
;-------------------------------
[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd04]
"MUIVerb"="MSConfig - Utilitaire de configuration système"
;ligne de séparation vers le bas
;"CommandFlags"=dword:00000040

[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd04\Command]
@="c:\\Windows\\System32\\msconfig.exe"

;Sous-Command 5 - Menu Maitre
;-------------------------------
[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd05]
"MUIVerb"="Panneau de Configuration"
"Icon"="%windir%\\system32\\LIB.DLL,3"
@=""

[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd05\Command]
@="rundll32.exe shell32.dll,Control_RunDLL"

;Sous-Command 6 - Menu Maitre
;-------------------------------
[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd06]
"MUIVerb"="Console Services"

[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd06\Command]
@="c:\\windows\\system32\\mmc.exe /s c:\\windows\\system32\\services.msc"

;Sous-Command 7 - Menu Maitre
;-------------------------------
;Arrêter le Système
[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd07]
"MUIVerb"="[Arrêter 5'']"
"Icon"="%windir%\\system32\\LIB.DLL,2"

[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd07\Command]
@="shutdown -s -f -t 5"

;Sous-Command 8 - Menu Maitre
;-------------------------------
;Redémarrer
[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd08]
"MUIVerb"="[Redémarrer  5'']"
"Icon"="%windir%\\system32\\LIB.DLL,6"

[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd08\Command]
@="shutdown -r -f -t 5"

;Sous-Command 9 - Menu Maitre
;-------------------------------
;Fermer la Session
[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd09]
"MUIVerb"="[Fermer la Session  5'']"
"Icon"="%windir%\\system32\\LIB.DLL,0"

[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd09\Command]
@="shutdown -l -f -t 5"

;Sous-Command 10 - Menu Maitre
;-------------------------------
;Outils d'Administration
[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd10]
"MUIVerb"="Outils d'Administration"
"Icon"="%windir%\\system32\\LIB.DLL,0"

[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd10\Command]
@="control admintools"

;Sous-Command 11 - Menu Maitre
;-------------------------------
;Gestionnaire des Tâches
[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd11]
"MUIVerb"="Gestionnaire des Tâches"
"Icon"="%windir%\\system32\\LIB.DLL,0"

[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd11\Command]
@="taskmgr"

;Sous-Command 12 - Menu Maitre
;-------------------------------
;Diagnostic de mémoire Windows
[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd12]
"MUIVerb"="Diagnostic de mémoire Windows"
"Icon"="%windir%\\system32\\LIB.DLL,0"

[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd12\Command]
@="mdsched"

;Sous-Command 13 - Menu Maitre
;-------------------------------
;Gestionnaire des Tâches Planifiées
[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd13]
"MUIVerb"="Gestionnaire des Tâches Planifiées"
"Icon"="%windir%\\system32\\LIB.DLL,0"

[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd13\Command]
@="c:\\windows\\system32\\mmc.exe /s c:\\windows\\system32\\taskschd.msc"

;Sous-Command 14 - Menu Maitre
;-------------------------------
;Centre Réseau et Partage
[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd14]
"MUIVerb"="Centre Réseau et Partage"
"Icon"="%windir%\\system32\\LIB.DLL,0"

[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd14\Command]
@="c:\\windows\\system32\\control.exe /name microsoft.networkandsharingcenter"

;Sous-Command 15 - Menu Maitre
;-------------------------------
[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd15]
"MUIVerb"="Cartes Réseaux - NIC"
"Icon"="%windir%\\system32\\LIB.DLL,5"
@=""

[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd15\Command]
@="rundll32.exe shell32.dll,Control_RunDLL \"ncpa.cpl\""

;Sous-Command 16 - Menu Maitre
;-------------------------------
[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd16]
"MUIVerb"="Vider le chache [IPConfig FlushDNS]"

[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd16\Command]
@="C:\\windows\\system32\\cmd.exe /k ipconfig /flushdns"

;Sous-Command 17 - Menu Maitre
;-------------------------------
[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd17]
"MUIVerb"="1 - Réinitialiser IP NIC"

[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd17\Command]
@="C:\\windows\\system32\\cmd.exe /k ipconfig /Release"

;Sous-Command 18 - Menu Maitre
;-------------------------------
[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd18]
"MUIVerb"="2 - Renouvellement IP NIC"

[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Cmd18\Command]
@="C:\\windows\\system32\\cmd.exe /k ipconfig /Renew"




;Sous-Menu 1 - Maitre
;---------------------
[HKEY_CLASSES_ROOT\Menu_Tech\Shell\Menu1]
"MUIVerb"="MMC"
"ExtendedSubCommandsKey"="Menu_Tech.SMenu1"


;==================================

;                 Menu_Tech.SMenu1

;Sous-Command & Sous-Menu - Sous-Menu 1

;===================================

;Sous-Command 1 - Sous-Menu 1
;-------------------------------
;Stratégie de Groupe
[HKEY_CLASSES_ROOT\Menu_Tech.SMenu1\Shell\SM1]
"MUIVerb"="Stratégie de Groupe"
@=""

[HKEY_CLASSES_ROOT\Menu_Tech.SMenu1\Shell\SM1\Command]
@="c:\\windows\\system32\\mmc.exe /s c:\\windows\\system32\\gpedit.msc"

;Sous-Command 2 - Sous-Menu 1
;-------------------------------
;Gestion de l'ordinateur
[HKEY_CLASSES_ROOT\Menu_Tech.SMenu1\Shell\SM2]
"MUIVerb"="Gestion de l'ordinateur"
@=""

[HKEY_CLASSES_ROOT\Menu_Tech.SMenu1\Shell\SM2\Command]
@="c:\\windows\\system32\\mmc.exe /s c:\\windows\\system32\\Compmgmt.msc"

;Sous-Command 3 - Sous-Menu 1
;-------------------------------
;Utilisateurs et Groupes Locaux
[HKEY_CLASSES_ROOT\Menu_Tech.SMenu1\Shell\SM3]
"MUIVerb"="Utilisateurs et Groupes Locaux"
@=""

[HKEY_CLASSES_ROOT\Menu_Tech.SMenu1\Shell\SM3\Command]
@="c:\\windows\\system32\\mmc.exe /s c:\\windows\\system32\\lusrmgr.msc"

;Sous-Command 4 - Sous-Menu 1
;-------------------------------
;Gestion des Disques
[HKEY_CLASSES_ROOT\Menu_Tech.SMenu1\Shell\SM4]
"MUIVerb"="Gestion des Disques"
@=""

[HKEY_CLASSES_ROOT\Menu_Tech.SMenu1\Shell\SM4\Command]
@="c:\\windows\\system32\\mmc.exe /s c:\\windows\\system32\\diskmgmt.msc"

;Sous-Command 5 - Sous-Menu 1
;-------------------------------
;Observateur des Evénements
[HKEY_CLASSES_ROOT\Menu_Tech.SMenu1\Shell\SM5]
"MUIVerb"="Observateur des Evénements"
@=""

[HKEY_CLASSES_ROOT\Menu_Tech.SMenu1\Shell\SM5\Command]
@="c:\\windows\\system32\\mmc.exe /s c:\\windows\\system32\\eventvwr.msc"



;              ===================================
;                               Menu Perso
;              ===================================
merci d'avance pour vos réponses!

a+