我想在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
它不起作用。弹出窗口会打开,询问密码,即使它仍在配置文件中定义。
我怎样才能实现它?
感谢您的帮助。
答案 0 :(得分:0)
此vncviewer.exe -help
会显示所有开关。
所以这一行应该有用。
vncviewer.exe -config config.vnc -ProxyServer vnchost:5901