将配置文件和参数传递给 vncviewer
Passing config file and argument to vncviewer
我想在 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
没用。弹出窗口询问我密码,即使它仍然在配置文件中定义。
如何实现?
感谢您的帮助。
这个 vncviewer.exe -help
确实向您展示了所有开关。
所以这一行中的某些内容应该有效。
vncviewer.exe -config config.vnc -ProxyServer vnchost:5901
我想在 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
没用。弹出窗口询问我密码,即使它仍然在配置文件中定义。
如何实现?
感谢您的帮助。
这个 vncviewer.exe -help
确实向您展示了所有开关。
所以这一行中的某些内容应该有效。
vncviewer.exe -config config.vnc -ProxyServer vnchost:5901