VirtualBox COM server bug
Posted: 16. Dec 2013, 05:02
Hi.
I'm trying to report a VirtualBox COM server bug which affects VBoxManage.exe and VirtualBox.exe.
It appeared in VirtualBox 4.2.20 and wasn't fixed despite the bug reports on the bugtracker (mines and others).
So I'm reporting it here hoping that it will not be ignored anymore...
Host OS: Windows XP SP3 x86, Windows 7 SP1 x64
VB Version: 4.3.4
I close any VirtualBox.exe and VBoxSVC.exe processes.
I issue a VBoxManage command (started as normal user or as an administrator, it doesn't matter, no change), I wait an amount of time between 6 sec and the moment VBoxSVC process closes and I issue another VBoxManage command.
This time it doesn't do anything for 30 sec and shows this message:
VBoxManage.exe: error: Failed to create the VirtualBox object!
VBoxManage.exe: error: Code CO_E_SERVER_EXEC_FAILURE (0x80080005) - Server execution failed (extended info not available)
VBoxManage.exe: error: Most likely, the VirtualBox COM server is not running or failed to start.
Press any key to close this window...
If I close a VM and in that time interval I start the VB Manager, it fails to start and I get the same error. Or if I close the VB Manager and start a VM...
Batch test file:
Best regards
I'm trying to report a VirtualBox COM server bug which affects VBoxManage.exe and VirtualBox.exe.
It appeared in VirtualBox 4.2.20 and wasn't fixed despite the bug reports on the bugtracker (mines and others).
So I'm reporting it here hoping that it will not be ignored anymore...
Host OS: Windows XP SP3 x86, Windows 7 SP1 x64
VB Version: 4.3.4
I close any VirtualBox.exe and VBoxSVC.exe processes.
I issue a VBoxManage command (started as normal user or as an administrator, it doesn't matter, no change), I wait an amount of time between 6 sec and the moment VBoxSVC process closes and I issue another VBoxManage command.
This time it doesn't do anything for 30 sec and shows this message:
VBoxManage.exe: error: Failed to create the VirtualBox object!
VBoxManage.exe: error: Code CO_E_SERVER_EXEC_FAILURE (0x80080005) - Server execution failed (extended info not available)
VBoxManage.exe: error: Most likely, the VirtualBox COM server is not running or failed to start.
Press any key to close this window...
If I close a VM and in that time interval I start the VB Manager, it fails to start and I get the same error. Or if I close the VB Manager and start a VM...
Batch test file:
Code: Select all
@echo Press any key to start the test...
@pause > nul
"%VBOX_INSTALL_PATH%VBoxManage.exe" modifyvm GUID_OF_THE_VM --hwvirtex off
@if errorlevel 1 goto end
@echo All ok, waiting about 7 sec...
@ping 127.0.0.1 -n 7 -w 1000 > nul
"%VBOX_INSTALL_PATH%VBoxManage.exe" modifyvm GUID_OF_THE_VM --hwvirtex on
@if errorlevel 1 goto end
@echo No error...
:end
@echo Press any key to close this window...
@pause > nul