diff --git a/samples/vboxwrapper/vbox.cpp b/samples/vboxwrapper/vbox.cpp index 65b6815071..8363d8eb52 100644 --- a/samples/vboxwrapper/vbox.cpp +++ b/samples/vboxwrapper/vbox.cpp @@ -2443,9 +2443,9 @@ int VBOX_VM::launch_vboxvm() { // Construct the command line parameters // if (headless) { - argv[0] = const_cast("vboxheadless.exe"); + argv[0] = const_cast("VboxHeadless.exe"); } else { - argv[0] = const_cast("virtualbox.exe"); + argv[0] = const_cast("VirtualBox.exe"); } argv[1] = const_cast("--startvm"); argv[2] = const_cast(vm_name.c_str());