查看virtualbox正在运行的虚拟机
VBoxManage list runningvms
后台开启虚拟机
VBoxManage startvm 虚拟机名字 --type headless
后台关闭虚拟机
VBoxManage controlvm 虚拟机名字 acpipowerbutton
Windows开机自动启动
制作bat脚本
@ECHO OFF
start VBoxManage startvm 虚拟机名字 --type headless
start VBoxManage startvm 虚拟机名字2 --type headless
...
EXIT
将bat拖进下面的目录
C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp