VirtualBox

source: vbox/trunk/doc/manual/en_US/dita/topics/config-vm-window-menu.dita@ 105145

Last change on this file since 105145 was 98549, checked in by vboxsync, 2 years ago

Docs: bugref:10302. Uploading .dita user manual files we received from the doc team on 25th Jan.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 24.7 KB
Line 
1<?xml version='1.0' encoding='UTF-8'?>
2<!DOCTYPE topic PUBLIC "-//OASIS//DTD DITA Topic//EN" "topic.dtd">
3<topic xml:lang="en-us" id="config-vm-window-menu">
4 <title>Configure VM Window Menu Entries</title>
5
6 <body>
7 <p>
8 You can disable certain menu actions in the VM window:
9 </p>
10 <pre xml:space="preserve">VBoxManage setextradata "VM name"|global GUI/RestrictedRuntimeMenus OPTION[,OPTION...]</pre>
11 <p>
12 where <codeph>OPTION</codeph> is one of the following
13 keywords:
14 </p>
15 <dl>
16 <dlentry>
17 <dt>
18 <codeph>All</codeph>
19 </dt>
20 <dd>
21 <p>
22 Do not show any menu in the VM window.
23 </p>
24 </dd>
25 </dlentry>
26 <dlentry>
27 <dt>
28 <codeph>Application</codeph>
29 </dt>
30 <dd>
31 <p>
32 Do not show
33 <b outputclass="bold">Application/File</b> menu in
34 the VM window.
35 </p>
36 </dd>
37 </dlentry>
38 <dlentry>
39 <dt>
40 <codeph>Machine</codeph>
41 </dt>
42 <dd>
43 <p>
44 Do not show the <b outputclass="bold">Machine</b>
45 menu in the VM window.
46 </p>
47 </dd>
48 </dlentry>
49 <dlentry>
50 <dt>
51 <codeph>View</codeph>
52 </dt>
53 <dd>
54 <p>
55 Do not show the <b outputclass="bold">View</b> menu
56 in the VM window.
57 </p>
58 </dd>
59 </dlentry>
60 <dlentry>
61 <dt>
62 <codeph>Input</codeph>
63 </dt>
64 <dd>
65 <p>
66 Do not show <b outputclass="bold">Input</b> menu in
67 the VM window.
68 </p>
69 </dd>
70 </dlentry>
71 <dlentry>
72 <dt>
73 <codeph>Devices</codeph>
74 </dt>
75 <dd>
76 <p>
77 Do not show the <b outputclass="bold">Devices</b>
78 menu in the VM window.
79 </p>
80 </dd>
81 </dlentry>
82 <dlentry>
83 <dt>
84 <codeph>Help</codeph>
85 </dt>
86 <dd>
87 <p>
88 Do not show the <b outputclass="bold">Help</b> menu
89 in the VM window.
90 </p>
91 </dd>
92 </dlentry>
93 <dlentry>
94 <dt>
95 <codeph>Debug</codeph>
96 </dt>
97 <dd>
98 <p>
99 Do not show the <b outputclass="bold">Debug</b>
100 menu in the VM window. The Debug menu is only visible if
101 the GUI was started with special command line parameters
102 or environment variable settings.
103 </p>
104 </dd>
105 </dlentry>
106 </dl>
107 <p>
108 This is a per-VM or global setting. Any combination of the above
109 is allowed. To restore the default behavior, use the following
110 command:
111 </p>
112 <pre xml:space="preserve">VBoxManage setextradata "VM name"|global GUI/RestrictedRuntimeMenus</pre>
113 <p>
114 You can also disable certain menu actions of certain menus. Use
115 the following command to disable certain actions of the
116 <b outputclass="bold">Application</b> menu. This is only
117 available on macOS hosts.
118 </p>
119 <pre xml:space="preserve">VBoxManage setextradata "VM name"|global GUI/RestrictedRuntimeApplicationMenuActions OPTION[,OPTION...]</pre>
120 <p>
121 where <codeph>OPTION</codeph> is one of the following
122 keywords:
123 </p>
124 <dl>
125 <dlentry>
126 <dt>
127 <codeph>All</codeph>
128 </dt>
129 <dd>
130 <p>
131 Do not show any menu item in this menu.
132 </p>
133 </dd>
134 </dlentry>
135 <dlentry>
136 <dt>
137 <codeph>About</codeph>
138 </dt>
139 <dd>
140 <p>
141 Do not show the <b outputclass="bold">About</b>
142 menu item in this menu.
143 </p>
144 </dd>
145 </dlentry>
146 <dlentry>
147 <dt>
148 <codeph>Preferences</codeph>
149 </dt>
150 <dd>
151 <p>
152 Do not show the
153 <b outputclass="bold">Preferences</b> menu item in
154 this menu.
155 </p>
156 </dd>
157 </dlentry>
158 <dlentry>
159 <dt>
160 <codeph>NetworkAccessManager</codeph>
161 </dt>
162 <dd>
163 <p>
164 Do not show the <b outputclass="bold">Network Operations
165 Manager</b> menu item in this menu.
166 </p>
167 </dd>
168 </dlentry>
169 <dlentry>
170 <dt>
171 <codeph>ResetWarnings</codeph>
172 </dt>
173 <dd>
174 <p>
175 Do not show the <b outputclass="bold">Reset All
176 Warnings</b> menu item in this menu.
177 </p>
178 </dd>
179 </dlentry>
180 <dlentry>
181 <dt>
182 <codeph>Close</codeph>
183 </dt>
184 <dd>
185 <p>
186 Do not show the <b outputclass="bold">Close</b>
187 menu item in this menu.
188 </p>
189 </dd>
190 </dlentry>
191 </dl>
192 <p>
193 This is a per-VM or global setting. Any combination of the above
194 is allowed. To restore the default behavior, use the following
195 command:
196 </p>
197 <pre xml:space="preserve">VBoxManage setextradata "VM name"|global GUI/RestrictedRuntimeMenus</pre>
198 <p>
199 Use the following command to disable certain actions of the
200 <b outputclass="bold">Machine</b> menu:
201 </p>
202 <pre xml:space="preserve">VBoxManage setextradata "VM name"|global GUI/RestrictedRuntimeMachineMenuActions OPTION[,OPTION...]</pre>
203 <p>
204 where <codeph>OPTION</codeph> is one of the following
205 keywords:
206 </p>
207 <dl>
208 <dlentry>
209 <dt>
210 <codeph>All</codeph>
211 </dt>
212 <dd>
213 <p>
214 Do not show any menu item in this menu.
215 </p>
216 </dd>
217 </dlentry>
218 <dlentry>
219 <dt>
220 <codeph>SettingsDialog</codeph>
221 </dt>
222 <dd>
223 <p>
224 Do not show the <b outputclass="bold">Settings</b>
225 menu item in this menu.
226 </p>
227 </dd>
228 </dlentry>
229 <dlentry>
230 <dt>
231 <codeph>TakeSnapshot</codeph>
232 </dt>
233 <dd>
234 <p>
235 Do not show the <b outputclass="bold">Take
236 Snapshot...</b> menu item in this menu.
237 </p>
238 </dd>
239 </dlentry>
240 <dlentry>
241 <dt>
242 <codeph>InformationDialog</codeph>
243 </dt>
244 <dd>
245 <p>
246 Do not show the <b outputclass="bold">Session
247 Information...</b> menu item in this menu.
248 </p>
249 </dd>
250 </dlentry>
251 <dlentry>
252 <dt>
253 <codeph>FileManagerDialog</codeph>
254 </dt>
255 <dd>
256 <p>
257 Do not show the <b outputclass="bold">File
258 Manager...</b> menu item in this menu.
259 </p>
260 </dd>
261 </dlentry>
262 <dlentry>
263 <dt>
264 <codeph>Pause</codeph>
265 </dt>
266 <dd>
267 <p>
268 Do not show the <b outputclass="bold">Pause</b>
269 menu item in this menu.
270 </p>
271 </dd>
272 </dlentry>
273 <dlentry>
274 <dt>
275 <codeph>Reset</codeph>
276 </dt>
277 <dd>
278 <p>
279 Do not show the <b outputclass="bold">Reset</b>
280 menu item in this menu.
281 </p>
282 </dd>
283 </dlentry>
284 <dlentry>
285 <dt>
286 <codeph>Shutdown</codeph>
287 </dt>
288 <dd>
289 <p>
290 Do not show the <b outputclass="bold">ACPI
291 Shutdown</b> menu item in this menu.
292 </p>
293 </dd>
294 </dlentry>
295 </dl>
296 <p>
297 This is a per-VM or global setting. Any combination of the above
298 is allowed. To restore the default behavior, use
299 </p>
300 <pre xml:space="preserve">VBoxManage setextradata "VM name"|global GUI/RestrictedRuntimeMachineMenuActions</pre>
301 <p>
302 Use the following command to disable certain actions of the
303 <b outputclass="bold">View</b> menu:
304 </p>
305 <pre xml:space="preserve">VBoxManage setextradata "VM name"|global GUI/RestrictedRuntimeViewMenuActions OPTION[,OPTION...]</pre>
306 <p>
307 where <codeph>OPTION</codeph> is one of the following
308 keywords:
309 </p>
310 <dl>
311 <dlentry>
312 <dt>
313 <codeph>All</codeph>
314 </dt>
315 <dd>
316 <p>
317 Do not show any menu item in this menu.
318 </p>
319 </dd>
320 </dlentry>
321 <dlentry>
322 <dt>
323 <codeph>Fullscreen</codeph>
324 </dt>
325 <dd>
326 <p>
327 Do not show the <b outputclass="bold">Full-screen
328 Mode</b> menu item in this menu.
329 </p>
330 </dd>
331 </dlentry>
332 <dlentry>
333 <dt>
334 <codeph>Seamless</codeph>
335 </dt>
336 <dd>
337 <p>
338 Do not show the <b outputclass="bold">Seamless
339 Mode</b> menu item in this menu.
340 </p>
341 </dd>
342 </dlentry>
343 <dlentry>
344 <dt>
345 <codeph>Scale</codeph>
346 </dt>
347 <dd>
348 <p>
349 Do not show the <b outputclass="bold">Scaled
350 Mode</b> menu item in this menu.
351 </p>
352 </dd>
353 </dlentry>
354 <dlentry>
355 <dt>
356 <codeph>GuestAutoresize</codeph>
357 </dt>
358 <dd>
359 <p>
360 Do not show the <b outputclass="bold">Auto-resize Guest
361 Display</b> menu item in this menu.
362 </p>
363 </dd>
364 </dlentry>
365 <dlentry>
366 <dt>
367 <codeph>AdjustWindow</codeph>
368 </dt>
369 <dd>
370 <p>
371 Do not show the <b outputclass="bold">Adjust Window
372 Size</b> menu item in this menu.
373 </p>
374 </dd>
375 </dlentry>
376 <dlentry>
377 <dt>
378 <codeph>TakeScreenshot</codeph>
379 </dt>
380 <dd>
381 <p>
382 Do not show the <b outputclass="bold">Take
383 Screenshot...</b> menu item in this menu.
384 </p>
385 </dd>
386 </dlentry>
387 <dlentry>
388 <dt>
389 <codeph>Recording</codeph>
390 </dt>
391 <dd>
392 <p>
393 Do not show the <b outputclass="bold">Recording</b>
394 menu item in this menu.
395 </p>
396 </dd>
397 </dlentry>
398 <dlentry>
399 <dt>
400 <codeph>VRDEServer</codeph>
401 </dt>
402 <dd>
403 <p>
404 Do not show the <b outputclass="bold">Remote
405 Display</b> menu item in this menu.
406 </p>
407 </dd>
408 </dlentry>
409 <dlentry>
410 <dt>
411 <codeph>MenuBar</codeph>
412 </dt>
413 <dd>
414 <p>
415 Do not show the <b outputclass="bold">Menu Bar</b>
416 menu item in this menu.
417 </p>
418 </dd>
419 </dlentry>
420 <dlentry>
421 <dt>
422 <codeph>MenuBarSettings</codeph>
423 </dt>
424 <dd>
425 <p>
426 Do not show the <b outputclass="bold">Menu Bar
427 Settings...</b> menu item in this menu.
428 </p>
429 </dd>
430 </dlentry>
431 <dlentry>
432 <dt>
433 <codeph>StatusBar</codeph>
434 </dt>
435 <dd>
436 <p>
437 Do not show the <b outputclass="bold">Status
438 Bar</b> menu item in this menu.
439 </p>
440 </dd>
441 </dlentry>
442 <dlentry>
443 <dt>
444 <codeph>StatusbarSettings</codeph>
445 </dt>
446 <dd>
447 <p>
448 Do not show the <b outputclass="bold">Statusbar
449 Settings...</b> menu item in this menu.
450 </p>
451 </dd>
452 </dlentry>
453 </dl>
454 <p>
455 This is a per-VM or global setting. Any combination of the above
456 is allowed. To restore the default behavior, use
457 </p>
458 <pre xml:space="preserve">VBoxManage setextradata "VM name"|global GUI/RestrictedRuntimeViewMenuActions</pre>
459 <p>
460 Use the following command to disable certain actions of the
461 <b outputclass="bold">Input</b> menu:
462 </p>
463 <pre xml:space="preserve">VBoxManage setextradata "VM name"|global GUI/RestrictedRuntimeInputMenuActions OPTION[,OPTION...]</pre>
464 <p>
465 where <codeph>OPTION</codeph> is one of the following
466 keywords:
467 </p>
468 <dl>
469 <dlentry>
470 <dt>
471 <codeph>All</codeph>
472 </dt>
473 <dd>
474 <p>
475 Do not show any menu item in this menu.
476 </p>
477 </dd>
478 </dlentry>
479 <dlentry>
480 <dt>
481 <codeph>Keyboard</codeph>
482 </dt>
483 <dd>
484 <p>
485 Do not show the <b outputclass="bold">Keyboard</b>
486 menu item in this menu.
487 </p>
488 </dd>
489 </dlentry>
490 <dlentry>
491 <dt>
492 <codeph>KeyboardSettings</codeph>
493 </dt>
494 <dd>
495 <p>
496 Do not show the <b outputclass="bold">Keyboard
497 Settings...</b> menu item in this menu.
498 </p>
499 </dd>
500 </dlentry>
501 <dlentry>
502 <dt>
503 <codeph>SoftKeyboard</codeph>
504 </dt>
505 <dd>
506 <p>
507 Do not show the <b outputclass="bold">Soft
508 Keyboard...</b> menu item in this menu.
509 </p>
510 </dd>
511 </dlentry>
512 <dlentry>
513 <dt>
514 <codeph>TypeCAD</codeph>
515 </dt>
516 <dd>
517 <p>
518 Do not show the <b outputclass="bold">Insert
519 Ctrl-Alt-Del</b> menu item in this menu.
520 </p>
521 </dd>
522 </dlentry>
523 <dlentry>
524 <dt>
525 <codeph>TypeCABS</codeph>
526 </dt>
527 <dd>
528 <p>
529 Do not show the <b outputclass="bold">Insert
530 Ctrl-Alt-Backspace</b> menu item in this menu.
531 </p>
532 </dd>
533 </dlentry>
534 <dlentry>
535 <dt>
536 <codeph>TypeCtrlBreak</codeph>
537 </dt>
538 <dd>
539 <p>
540 Do not show the <b outputclass="bold">Insert
541 Ctrl-Break</b> menu item in this menu.
542 </p>
543 </dd>
544 </dlentry>
545 <dlentry>
546 <dt>
547 <codeph>TypeInsert</codeph>
548 </dt>
549 <dd>
550 <p>
551 Do not show the <b outputclass="bold">Insert
552 Insert</b> menu item in this menu.
553 </p>
554 </dd>
555 </dlentry>
556 <dlentry>
557 <dt>
558 <codeph>TypePrintScreen</codeph>
559 </dt>
560 <dd>
561 <p>
562 Do not show the <b outputclass="bold">Insert Print
563 Screen</b> menu item in this menu.
564 </p>
565 </dd>
566 </dlentry>
567 <dlentry>
568 <dt>
569 <codeph>TypeAltPrintScreen</codeph>
570 </dt>
571 <dd>
572 <p>
573 Do not show the <b outputclass="bold">Insert Alt Print
574 Screen</b> menu item in this menu.
575 </p>
576 </dd>
577 </dlentry>
578 <dlentry>
579 <dt>
580 <codeph>TypeHostKeyCombo</codeph>
581 </dt>
582 <dd>
583 <p>
584 Do not show the <b outputclass="bold">Insert Host Key
585 Combo</b> menu item in this menu.
586 </p>
587 </dd>
588 </dlentry>
589 <dlentry>
590 <dt>
591 <codeph>MouseIntegration</codeph>
592 </dt>
593 <dd>
594 <p>
595 Do not show the
596 <b outputclass="bold">MouseIntegration</b> menu
597 item in this menu.
598 </p>
599 </dd>
600 </dlentry>
601 </dl>
602 <p>
603 This is a per-VM or global setting. Any combination of the above
604 is allowed. To restore the default behavior, use
605 </p>
606 <pre xml:space="preserve">VBoxManage setextradata "VM name"|global GUI/RestrictedRuntimeInputMenuActions</pre>
607 <p>
608 Use the following command to disable certain actions of the
609 <b outputclass="bold">Devices</b> menu:
610 </p>
611 <pre xml:space="preserve">VBoxManage setextradata "VM name"|global GUI/RestrictedRuntimeDevicesMenuActions OPTION[,OPTION...]</pre>
612 <p>
613 where <codeph>OPTION</codeph> is one of the following keywords
614 to disable actions in the
615 <b outputclass="bold">Devices</b> menu:
616 </p>
617 <dl>
618 <dlentry>
619 <dt>
620 <codeph>All</codeph>
621 </dt>
622 <dd>
623 <p>
624 Do not show any menu item in this menu.
625 </p>
626 </dd>
627 </dlentry>
628 <dlentry>
629 <dt>
630 <codeph>HardDrives</codeph>
631 </dt>
632 <dd>
633 <p>
634 Do not show the <b outputclass="bold">Hard
635 Disks</b> menu item in this menu.
636 </p>
637 </dd>
638 </dlentry>
639 <dlentry>
640 <dt>
641 <codeph>OpticalDevices</codeph>
642 </dt>
643 <dd>
644 <p>
645 Do not show the <b outputclass="bold">Optical
646 Devices</b> menu item in this menu.
647 </p>
648 </dd>
649 </dlentry>
650 <dlentry>
651 <dt>
652 <codeph>FloppyDevices</codeph>
653 </dt>
654 <dd>
655 <p>
656 Do not show the <b outputclass="bold">Floppy
657 Drives</b> menu item in this menu.
658 </p>
659 </dd>
660 </dlentry>
661 <dlentry>
662 <dt>
663 <codeph>Audio</codeph>
664 </dt>
665 <dd>
666 <p>
667 Do not show the <b outputclass="bold">Audio</b>
668 menu item in this menu.
669 </p>
670 </dd>
671 </dlentry>
672 <dlentry>
673 <dt>
674 <codeph>Network</codeph>
675 </dt>
676 <dd>
677 <p>
678 Do not show the <b outputclass="bold">Network</b>
679 menu item in this menu.
680 </p>
681 </dd>
682 </dlentry>
683 <dlentry>
684 <dt>
685 <codeph>NetworkSettings</codeph>
686 </dt>
687 <dd>
688 <p>
689 Do not show the <b outputclass="bold">Network
690 Settings</b> menu item in this menu.
691 </p>
692 </dd>
693 </dlentry>
694 <dlentry>
695 <dt>
696 <codeph>USBDevices</codeph>
697 </dt>
698 <dd>
699 <p>
700 Do not show the <b outputclass="bold">USB </b> menu
701 item in this menu.
702 </p>
703 </dd>
704 </dlentry>
705 <dlentry>
706 <dt>
707 <codeph>WebCams</codeph>
708 </dt>
709 <dd>
710 <p>
711 Do not show the <b outputclass="bold">WebCams </b>
712 menu item in this menu.
713 </p>
714 </dd>
715 </dlentry>
716 <dlentry>
717 <dt>
718 <codeph>SharedFolders</codeph>
719 </dt>
720 <dd>
721 <p>
722 Do not show the <b outputclass="bold">Shared
723 Folders</b> menu item in this menu.
724 </p>
725 </dd>
726 </dlentry>
727 <dlentry>
728 <dt>
729 <codeph>SharedFoldersSettings</codeph>
730 </dt>
731 <dd>
732 <p>
733 Do not show the <b outputclass="bold">Shared Folders
734 Settings...</b> menu item in this menu.
735 </p>
736 </dd>
737 </dlentry>
738 <dlentry>
739 <dt>
740 <codeph>SharedClipboard</codeph>
741 </dt>
742 <dd>
743 <p>
744 Do not show the <b outputclass="bold">Shared
745 Clipboard</b> menu item in this menu.
746 </p>
747 </dd>
748 </dlentry>
749 <dlentry>
750 <dt>
751 <codeph>DragAndDrop</codeph>
752 </dt>
753 <dd>
754 <p>
755 Do not show the <b outputclass="bold">Drag and
756 Drop</b> menu item in this menu.
757 </p>
758 </dd>
759 </dlentry>
760 <dlentry>
761 <dt>
762 <codeph>InstallGuestTools</codeph>
763 </dt>
764 <dd>
765 <p>
766 Do not show the <b outputclass="bold">Insert Guest
767 Additions CD image...</b> menu item in this menu.
768 </p>
769 </dd>
770 </dlentry>
771 </dl>
772 <p>
773 This is a per-VM or global or global setting. Any combination of
774 the above is allowed. To restore the default behavior, use
775 </p>
776 <pre xml:space="preserve">VBoxManage setextradata "VM name"|global GUI/RestrictedRuntimeDevicesMenuActions</pre>
777 <p>
778 Use the following command to disable certain actions of the
779 <b outputclass="bold">Debug</b> menu:
780 </p>
781 <pre xml:space="preserve">VBoxManage setextradata "VM name"|global GUI/RestrictedRuntimeDebuggerMenuActions OPTION[,OPTION...]</pre>
782 <p>
783 where <codeph>OPTION</codeph> is one of the following keywords
784 to disable actions in the <i>Debug</i> menu, which
785 is normally completely disabled:
786 </p>
787 <dl>
788 <dlentry>
789 <dt>
790 <codeph>All</codeph>
791 </dt>
792 <dd>
793 <p>
794 Do not show any menu item in this menu.
795 </p>
796 </dd>
797 </dlentry>
798 <dlentry>
799 <dt>
800 <codeph>Statistics</codeph>
801 </dt>
802 <dd>
803 <p>
804 Do not show the
805 <b outputclass="bold">Statistics...</b> menu item
806 in this menu.
807 </p>
808 </dd>
809 </dlentry>
810 <dlentry>
811 <dt>
812 <codeph>CommandLine</codeph>
813 </dt>
814 <dd>
815 <p>
816 Do not show the <b outputclass="bold">Command
817 Line...</b> menu item in this menu.
818 </p>
819 </dd>
820 </dlentry>
821 <dlentry>
822 <dt>
823 <codeph>Logging</codeph>
824 </dt>
825 <dd>
826 <p>
827 Do not show the
828 <b outputclass="bold">Logging...</b> menu item in
829 this menu.
830 </p>
831 </dd>
832 </dlentry>
833 <dlentry>
834 <dt>
835 <codeph>LogDialog</codeph>
836 </dt>
837 <dd>
838 <p>
839 Do not show the <b outputclass="bold">Show
840 Log...</b> menu item in this menu.
841 </p>
842 </dd>
843 </dlentry>
844 <dlentry>
845 <dt>
846 <codeph>GuestControlConsole</codeph>
847 </dt>
848 <dd>
849 <p>
850 Do not show the <b outputclass="bold">Guest Control
851 Terminal...</b> menu item in this menu.
852 </p>
853 </dd>
854 </dlentry>
855 </dl>
856 <p>
857 This is a per-VM or global setting. Any combination of the above
858 is allowed. To restore the default behavior, use
859 </p>
860 <pre xml:space="preserve">VBoxManage setextradata "VM name"|global GUI/RestrictedRuntimeDebuggerMenuActions</pre>
861 <p>
862 Use the following command to disable certain actions of the
863 <b outputclass="bold">View</b> menu:
864 </p>
865 <pre xml:space="preserve">VBoxManage setextradata "VM name"|global GUI/RestrictedRuntimeHelpMenuActions OPTION[,OPTION...]</pre>
866 <p>
867 where <codeph>OPTION</codeph> is one of the following keywords
868 to disable actions in the <b outputclass="bold">Help</b>
869 menu, which is normally completely disabled:
870 </p>
871 <dl>
872 <dlentry>
873 <dt>
874 <codeph>All</codeph>
875 </dt>
876 <dd>
877 <p>
878 Do not show any menu item in this menu.
879 </p>
880 </dd>
881 </dlentry>
882 <dlentry>
883 <dt>
884 <codeph>Contents</codeph>
885 </dt>
886 <dd>
887 <p>
888 Do not show the
889 <b outputclass="bold">Contents...</b> menu item in
890 this menu.
891 </p>
892 </dd>
893 </dlentry>
894 <dlentry>
895 <dt>
896 <codeph>WebSite</codeph>
897 </dt>
898 <dd>
899 <p>
900 Do not show the <b outputclass="bold">VirtualBox Web
901 Site...</b> menu item in this menu.
902 </p>
903 </dd>
904 </dlentry>
905 <dlentry>
906 <dt>
907 <codeph>BugTracker</codeph>
908 </dt>
909 <dd>
910 <p>
911 Do not show the <b outputclass="bold">VirtualBox Bug
912 Tracker...</b> menu item in this menu.
913 </p>
914 </dd>
915 </dlentry>
916 <dlentry>
917 <dt>
918 <codeph>Forums</codeph>
919 </dt>
920 <dd>
921 <p>
922 Do not show the <b outputclass="bold">VirtualBox
923 Forums...</b> menu item in this menu.
924 </p>
925 </dd>
926 </dlentry>
927 <dlentry>
928 <dt>
929 <codeph>Oracle</codeph>
930 </dt>
931 <dd>
932 <p>
933 Do not show the <b outputclass="bold">Oracle Web
934 Site...</b> menu item in this menu.
935 </p>
936 </dd>
937 </dlentry>
938 <dlentry>
939 <dt>
940 <codeph>About</codeph>
941 </dt>
942 <dd>
943 <p>
944 Do not show the <b outputclass="bold">About
945 VirtualBox...</b> menu item in this menu. Only for
946 non-macOS hosts.
947 </p>
948 </dd>
949 </dlentry>
950 </dl>
951 <p>
952 This is a per-VM or global setting. Any combination of the above
953 is allowed. To restore the default behavior, use
954 </p>
955 <pre xml:space="preserve">VBoxManage setextradata "VM name"|global GUI/RestrictedRuntimeHelpMenuActions</pre>
956 </body>
957
958</topic>
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette