放牧代码和思想
专注自然语言处理、机器学习算法
    This thing called love. Know I would've. Thrown it all away. Wouldn't hesitate.

Genymotion 命令行启动

今天更新了IntelliJ IDEA 13,发现Genymotion的工具栏按钮不见了。其实这并不是插件不兼容IntelliJ IDEA 13,在View里显示工具栏就行了。鼠标和GUI的确是效率的大敌,让我们用command line嘲讽它们。

所谓的Genymotion插件其实也没什么了不起的,也就是提供一个快速启动虚拟机的按钮而已,根本不值得花功夫安装一整个插件。这个按钮大概也是对命令行的简化吧。

来看看Genymotion的命令行:

The command line you need to launch is:

player --vm-name <VM id | VM name>

The VMs id and name can be found from command line using this code:

VBoxManage list vms

It displays a list of your Virtual Box machines on this format: name {id}.


http://stackoverflow.com/questions/18768489/how-to-start-genymotion-device-with-shell-command/18773118#18773118

于是一段一键启动.cmd:

"X:\Program Files\Genymobile\Genymotion\player.exe" --vm-name "Galaxy Nexus - 4.2.2 - API 17 - 720x1280"

这段命令行启动后会留下dos窗口,怪难看的,于是进化一个vbs:

CreateObject("wscript.shell").run """X:\Program Files\Genymobile\Genymotion\player.exe"" --vm-name ""Galaxy Nexus - 4.2.2 - API 17 - 720x1280""",0

知识共享许可协议 知识共享署名-非商业性使用-相同方式共享码农场 » Genymotion 命令行启动

评论 2

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址
  1. #2

    进化的vbs不奏效啊

    test28年前 (2016-05-24)回复
  2. #1

    缓存

    test11年前 (2013-12-07)回复

我的作品

HanLP自然语言处理包《自然语言处理入门》