gmatano
gmatano
I'm not sure what you mean by this. Do you mean launching the virtualbox within the virtual box manager and then run the python script to with session.machine.launch_vm_process()? On Fri,...
Ran this: import virtualbox vbox = virtualbox.VirtualBox() print("VM(s):\n + %s" % "\n + ".join([vm.name for vm in vbox.machines])) session = virtualbox.Session() vm = vbox.find_machine('U') progress = session.machine.launch_vm_process() Got this traceback:...
Ran this: import virtualbox vbox = virtualbox.VirtualBox() print("VM(s):\n + %s" % "\n + ".join([vm.name for vm in vbox.machines])) s = virtualbox.Session() vm.lock_machine(s, virtualbox.library.LockType.shared) vm = vbox.find_machine('U') progress = s.machine.launch_vm_process() Got...