Update: UltraVNC 1.4.3.6 and UltraVNC SC 1.4.3.6: viewtopic.php?t=37885
Important: Please update to latest version before to create a reply, a topic or an issue: 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://twitter.com/ultravnc1
- Reddit community: https://www.reddit.com/r/ultravnc
- OpenHub: https://openhub.net/p/ultravnc

Help me to update my strategy

Post Reply
pcouderc
Posts: 1
Joined: 2018-07-28 07:36

Help me to update my strategy

Post by pcouderc »

Since many years I did use ultravnc SC and it was fine, to help any windows user...

Now I need the equivalent with a viewer in linux, and a server on windows XP, 8,10...

What is the best strategy for that ?

Which known linux viewer works on linux (in listen mode...) ?
Maybe only 1 server.exe is possible, maybe not, one for XP, one for other Windows?
I would like a single-click user server, I could write it myself if needed if it is small, to call this or that, but maybe it exits soon ..?

Please help me to update my strategy...

Thnks.
PC
Bedazzled
8
8
Posts: 25
Joined: 2016-04-04 10:35

Re: Help me to update my strategy

Post by Bedazzled »

x11vnc+repeater
https://unixforum.org/viewtopic.php?t=138440

server:

Code: Select all

#!/bin/sh
killall x11vnc
ID=`shuf -i 100000-999999 -n 1`
x11vnc -connect repeater=ID:$ID+90.128.128.128:5509 -solid -ultrafilexfer -speeds dsl -bg
zenity --info --text '<i>HELPDESK</i>\n\n<span foreground="red" font="16">\НЕ ЗАКРЫВАЙТЕ ЭТО ОКНО</span>\n\n<span foreground="black" font="24">\Ваш ID</span>\n\n<span foreground="blue" font="32">'$ID' </span>\n\n<i>www.soft123.ru</i>'
killall x11vnc
client:

Code: Select all

ssvncviewer -repeater ID:1234 host:port
Post Reply