After more 1 000 000 (one million) views on forum for 1.5.0.x development versions... and 1.6.0.0 version
A new stable version, UltraVNC 1.6.1.0 and UltraVNC SC 1.6.1.0 have been released: https://forum.uvnc.com/viewtopic.php?t=38080
Feedback is welcome

Celebrating the 22th anniversary of the UltraVNC (25th anniversary since the laying of the foundation stone): https://forum.uvnc.com/viewtopic.php?t=38031

Important: Please update to latest version before to create a reply, a topic or an issue: https://forum.uvnc.com/viewtopic.php?t=37864

Forum password change request: https://forum.uvnc.com/viewtopic.php?t=38078

Development: UltraVNC development is always here... Any help is welcome.
A new development version, UltraVNC 1.6.3.0-dev has been released, please test it: https://forum.uvnc.com/viewtopic.php?t=38091
Feedback is welcome

Join us on social networks and share our announcements:
- Website: https://uvnc.com/
- GitHub: https://github.com/ultravnc
- Mastodon: https://mastodon.social/@ultravnc
- Bluesky/AT Protocol: https://bsky.app/profile/ultravnc.bsky.social
- 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

Search found 4 matches

by Thohoj
2016-07-03 20:38
Forum: Developer discussions (mainly user-mode)
Topic: Start two winvnc service instances parallel
Replies: 2
Views: 33760

Re: Start two winvnc service instances parallel

In the meantime I was able to find the cause:

service_1 starts up and starts its child (c1) process.
service_2 starts up and starts its child (c2) process.
c2 detects the "don't start me twice" mutex of c1 and shuts itself down.
During shutdown it fires an event that leads into shutdown of c1 ...
by Thohoj
2016-07-01 06:59
Forum: Developer discussions (mainly user-mode)
Topic: Change service_name of uvnc server in service mode
Replies: 1
Views: 27652

Re: Change service_name of uvnc server in service mode

I found the solution in the source code:

winvnc.cpp / WinMain(...)

// rest of command line service name, if provided.
char *pServiceName = &szCmdLine[i];
...
// if a service name is supplied, and it differs except in case from
// the default, use the supplied service name instead
if ...
by Thohoj
2016-07-01 06:59
Forum: Developer discussions (mainly user-mode)
Topic: Start two winvnc service instances parallel
Replies: 2
Views: 33760

Start two winvnc service instances parallel

Hi,

I installed two winvnc services

winvnc.exe -install uvnc_service_1
winvnc.exe -install uvnc_service_2


What happens is:
uvnc_service_1 starts up, creates its child winvnc process and starts listening. When uvnc_service_2 starts up the child process of uvnc_service_1 stops. After a moment ...
by Thohoj
2016-06-30 08:26
Forum: Developer discussions (mainly user-mode)
Topic: Change service_name of uvnc server in service mode
Replies: 1
Views: 27652

Change service_name of uvnc server in service mode

Hi,

I need to change the service name when registering the uvnc as a windows service.

I've found this in the changelog ( http://www.uvnc.com/general/whatsnew.html ):
- You can now register the service with a custom name.

But I cannot find any option to do this. Looking at the current code, the ...