将配置文件和参数传递给vncviewer

时间:2017-10-10 08:07:54

标签: windows batch-file scripting vnc vnc-viewer

我想在Windows上的脚本中启动vncviewer。 使用配置文件可以正常工作:

vncviewer.exe /config config.vnc

此配置包含以下内容:

[connection]
host=myvncserver
port=5901
password=encryptedpassword
[options]
restricted=0
viewonly=0
fullscreen=0

但是我想将主机和端口作为参数传递,但在conf文件中保留其他选项。这样的事情:

vncviewer.exe /config config.vnc myvncserver:5901

它不起作用。弹出窗口会打开,询问密码,即使它仍在配置文件中定义。

我怎样才能实现它?

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

vncviewer.exe -help会显示所有开关。

所以这一行应该有用。

vncviewer.exe -config config.vnc -ProxyServer vnchost:5901