Page 1 of 1

how to remove mini toolbal and menubar in command line?

Posted: 29. Oct 2013, 17:27
by xuchao
i try to remove menubar in vm windows but failed and i cannot find the way to remove mini toolbar in fullscreen with command line.can you help me ?

Re: how to remove mini toolbal and menubar in command line?

Posted: 29. Oct 2013, 19:24
by Perryg
This should shut off the menubar

Code: Select all

VBoxManage setextradata <vmname> GUI/Customizations noMenuBar
This turns it off on all guests

Code: Select all

VBoxManage setextradata global GUI/Customizations noMenuBar
Be sure to backup the *.vbox and VirtualBox.xml files before you try

Re: how to remove mini toolbal and menubar in command line?

Posted: 30. Oct 2013, 03:21
by xuchao
Perryg wrote:This should shut off the menubar

Code: Select all

VBoxManage setextradata <vmname> GUI/Customizations noMenuBar
This turns it off on all guests

Code: Select all

VBoxManage setextradata global GUI/Customizations noMenuBar
Be sure to backup the *.vbox and VirtualBox.xml files before you try
but what should i do with mini tools?

Re: how to remove mini toolbal and menubar in command line?

Posted: 30. Oct 2013, 03:26
by Perryg
This is the line in the registry <ExtraDataItem name="GUI/ShowMiniToolBar" value="yes"/>
So this should do it

Code: Select all

VBoxManage setextradata <vmname> GUI/ShowMiniToolBar no