76

The file is located in Program Files/Oracle/VirtualBox/VBoxManage.exe and is used as a command-line interface with VirtualBox.

I'm using it to convert the .vdi image to a .vdmk (for VMware).

http://scottlinux.com/2011/06/24/convert-vdi-to-vmdk-virtualbox-to-vmware/

Here's an example script:

$ VBoxManage list hdds

But where do I run this command? In Windows cmd? I tried both in cmd and in Linux but I can't figure it out.

user9517
  • 117,122
AlxVallejo
  • 1,096

3 Answers3

88

You need to either use the whole path for the command:

"C:\Program Files\Oracle\VirtualBox\VBoxManage.exe" list hdds

Or cd to the C:\Program Files\Oracle\VirtualBox directory, then:

VBoxManage.exe list hdds

Or you can add add the C:\Program Files\Oracle\VirtualBox directory to your PATH:

PATH=%PATH%;C:\Program Files\Oracle\VirtualBox

and then you can run VBoxManage from anywhere

user9517
  • 117,122
16

It's a pretty sure bet that running an exe file in Linux won't work. In Windows you do run it from the command prompt. If you get a message about the command not being found then either add the path to the command to your PATH environment variable or specify the full path to the command.

If the command runs but it's not doing what you think it should be doing then read the documentation.

2
  1. From the Windows7 start menu go to search programs and files folder.
  2. Type in CMD. Do not press enter.
  3. Right Click on the CMD icon and select copy.
  4. Navigate to c:\"Program Files\Oracle\VirtualBox\
  5. Right click in the window and select paste.

You should now be able to use VboxManage from the CMD window. Try typing in VboxManage /? If you see the help list then your on your way.

LRankin2
  • 31
  • 1