I'm implementing this inhouse for LAN only use and really don't care about encryption since I'm not setting up my repeater/firewall for external use. Would rather it not have a password to use it when the viewer and host have already exchanged the session id.
Also, is there a way to add schook.dll and vnchooks.dll to the installation package? Wouldn't it speed things up or is it necessary?
Update: UltraVNC 1.4.3.6 and UltraVNC SC 1.4.3.6: https://forum.uvnc.com/viewtopic.php?t=37885
Important: Please update to latest version before to create a reply, a topic or an issue: https://forum.uvnc.com/viewtopic.php?t=37864
Join us on social networks and share our announcements:
- Website: https://uvnc.com/
- GitHub: https://github.com/ultravnc
- Mastodon: https://mastodon.social/@ultravnc
- Facebook: https://www.facebook.com/ultravnc1
- X/Twitter: https://x.com/ultravnc1
- Reddit community: https://www.reddit.com/r/ultravnc
- OpenHub: https://openhub.net/p/ultravnc
Important: Please update to latest version before to create a reply, a topic or an issue: https://forum.uvnc.com/viewtopic.php?t=37864
Join us on social networks and share our announcements:
- Website: https://uvnc.com/
- GitHub: https://github.com/ultravnc
- Mastodon: https://mastodon.social/@ultravnc
- Facebook: https://www.facebook.com/ultravnc1
- X/Twitter: https://x.com/ultravnc1
- Reddit community: https://www.reddit.com/r/ultravnc
- OpenHub: https://openhub.net/p/ultravnc
is there a way to omit dsm plugin and not require a password
Re: is there a way to omit dsm plugin and not require a pass
I haven't tested it but you should be able to just add the password to ChunkViewer's command line.
ChunkVNC 3.2
Edit file SRC\ChunkViewer.au3
LINE: 135
Change:
to:
Replace CLEARTEXTPASSWORD with your password.
The hook dll's were part of ChunkVNC in the past but have been removed because they are closed source.
I think the mirror driver would give you a good increase in performance but the added latency of the repeater will never be as good as a direct connection for LAN.
ChunkVNC 3.2
Edit file SRC\ChunkViewer.au3
LINE: 135
Change:
Code: Select all
ShellExecute( @ScriptDir & "\Bin\vncviewer.exe", "-proxy " & $RepeaterAddress & " ID:" & $IDNumber & " -quickoption " & $Quality & " -keepalive 1 -dsmplugin SecureVNCPlugin.dsm" )
Code: Select all
ShellExecute( @ScriptDir & "\Bin\vncviewer.exe", "-proxy " & $RepeaterAddress & " ID:" & $IDNumber & " -quickoption -password CLEARTEXTPASSWORD " & $Quality & " -keepalive 1 -dsmplugin SecureVNCPlugin.dsm" )
The hook dll's were part of ChunkVNC in the past but have been removed because they are closed source.
I think the mirror driver would give you a good increase in performance but the added latency of the repeater will never be as good as a direct connection for LAN.
http://www.chunkvnc.com - ChunkVNC - Free PC Remote control with the Open Source UltraVNC wrapper InstantSupport!
Re: is there a way to omit dsm plugin and not require a pass
thanks. that didn't work for me- threw errors & wouldn't open when I added those switches
I worked around & ommited references to the dsm plugin for the viewer & server and it skipped password prompting all together. as mentioned before I'm not as concerned with encrypting brief remote support connections on a small LAN so it works out nicely this way.
I worked around & ommited references to the dsm plugin for the viewer & server and it skipped password prompting all together. as mentioned before I'm not as concerned with encrypting brief remote support connections on a small LAN so it works out nicely this way.
Re: is there a way to omit dsm plugin and not require a pass
Sorry the code didn't work, I'll add it as a feature for the next release to save the password.
http://www.chunkvnc.com - ChunkVNC - Free PC Remote control with the Open Source UltraVNC wrapper InstantSupport!