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

Will there be an update to UVNC SC

Single Click discussions / bugs
Post Reply
peon2t
Posts: 3
Joined: 2015-06-19 09:29

Will there be an update to UVNC SC

Post by peon2t »

Hello

I'm using UVNC SC for many years now - but especially since the release of Windows 8.1 an Windows 10 the problems seem to get worse.

A very common issue is, that UVNC only refreshes a certain amount of the top left side of the screen, while the bottom and the right side can only be refreshed manually. This happens on the majority of the servers that run Win 8.1 or Win 10.

Also the performance isn't as good as one would wish. Especially if there are images involved (e.g. on Websites that are displayed on the servers screen) remote control often gets nearly unuseable. It doesn't really seem to matter how good the upstream connection from the server is, so I assume it isn't a problem of how the data is transfered but rather how it is captured.


Of course I'm aware that uVNC SC is a non-commercial product and that you can't expect it to fully compete with it's commercial competitors but I was still wondering if there will be any attempts to make uVNC SC compatible again to the software and hardware that is "out there" nowadays or if it's development has been completely abandoned?
User avatar
Rudi De Vos
Admin & Developer
Admin & Developer
Posts: 6832
Joined: 2004-04-23 10:21
Contact:

Re: Will there be an update to UVNC SC

Post by Rudi De Vos »

What version are you using?
Isn't the win8/win10 update working ?

http://www.uvnc.com/downloads/single-cl ... loads.html
sylrob
8
8
Posts: 12
Joined: 2013-11-27 16:49

Re: Will there be an update to UVNC SC

Post by sylrob »

Hello Rudi,

I'm also a little bit confuse about SC, The only version I found is 1.1.0.0, is it the latest ?. If so my test reveal that the screen refresh is very slow. If I use vncserver (complete version) on the same computer that was running SC and connect to it, the screen refresh is pretty fast . If I used SC on the same computer and connect to the vncviewer the scrren refresh takes about 5 to 10 seconds on each click before viewing somewthing on the vncviewer computer ?. I tried on Windows 7 -> Windows 7 computer and Windows 10-> Windows 7 computer same problem !

Best REgards,

Sylvain
David4
8
8
Posts: 24
Joined: 2010-08-11 15:13

Re: Will there be an update to UVNC SC

Post by David4 »

Hi,
I tried to extend Dtwinver.cpp with

Code: Select all

BOOL COSVersion::IsWindowsWin8(LPOS_VERSION_INFO lpVersionInformation)
{
  return (lpVersionInformation->UnderlyingPlatform == WindowsNT &&
          lpVersionInformation->dwUnderlyingMajorVersion == 6 &&
          lpVersionInformation->dwUnderlyingMinorVersion == 2);
}

BOOL COSVersion::IsWindowsWin81(LPOS_VERSION_INFO lpVersionInformation)
{
  return (lpVersionInformation->UnderlyingPlatform == WindowsNT &&
          lpVersionInformation->dwUnderlyingMajorVersion == 6 &&
          lpVersionInformation->dwUnderlyingMinorVersion == 3);
}

BOOL COSVersion::IsWindowsWin10(LPOS_VERSION_INFO lpVersionInformation)
{
  return (lpVersionInformation->UnderlyingPlatform == WindowsNT &&
          lpVersionInformation->dwUnderlyingMajorVersion == 10);
}
and related changes in Dtwinver.h and Test.cpp to recognize newer Windows versions. It doesn't work, but I'm not so familiar with C and I don't know, what's wrong. Windows 8.1 is not recognized. (BTW: A Windows Server 2008R2 is shown as "Vista"). Although it is nothing important, I'd like to see, how you would do that.
User avatar
Rudi De Vos
Admin & Developer
Admin & Developer
Posts: 6832
Joined: 2004-04-23 10:21
Contact:

Re: Will there be an update to UVNC SC

Post by Rudi De Vos »

I didn't updated the version numbers of SC... you need to use the build date.
Latest version is feb 2015

Webpage
http://www.uvnc.com/downloads/single-cl ... loads.html

bin ( downloaded when you creating the Sc)
UltraVncSC update Feb 2015
Experimental June 2015 win8 win10

Source files
SC update 2010
SC update 2011
SC update 2013
SC update 2014
SC update 2015(Feb)
User avatar
Rudi De Vos
Admin & Developer
Admin & Developer
Posts: 6832
Joined: 2004-04-23 10:21
Contact:

Re: Will there be an update to UVNC SC

Post by Rudi De Vos »

version

from 8.1 the getversion function doesn't work correct
8.1 and 10 is always 8.0

workaround with rtlversion
see
http://www.naughter.com/dtwinver.html
sylrob
8
8
Posts: 12
Joined: 2013-11-27 16:49

Re: Will there be an update to UVNC SC

Post by sylrob »

Rudi De Vos wrote:I didn't updated the version numbers of SC... you need to use the build date.
Latest version is feb 2015

Webpage
http://www.uvnc.com/downloads/single-cl ... loads.html

bin ( downloaded when you creating the Sc)
UltraVncSC update Feb 2015
Experimental June 2015 win8 win10

Source files
SC update 2010
SC update 2011
SC update 2013
SC update 2014
SC update 2015(Feb)
Everything is ok now, it was my fault I wasn't understanding the process to create my SC version now it's ok and working fast !

Thank you Rudi,

Now where can I read about the distribution of the EXE received, I want to incorporate it in our software for our technical support staff to give them the ability to control the remote computer !?. I'll also review your uvnc2me wich seem interesting to !.
User avatar
Rudi De Vos
Admin & Developer
Admin & Developer
Posts: 6832
Joined: 2004-04-23 10:21
Contact:

Re: Will there be an update to UVNC SC

Post by Rudi De Vos »

The received exe is a 7zip sfx file, if 7zip is installed you can extract it in see what's in the exe.
Source of the exe can also be downloaded on the same page.
David4
8
8
Posts: 24
Joined: 2010-08-11 15:13

Re: Will there be an update to UVNC SC

Post by David4 »

Thank you. I read, tried to understand and change test.cpp for a while, but the differences of the new dtwinver-files are too big for me. I give up and stay without seeing the correct OS as before. :-/
User avatar
Rudi De Vos
Admin & Developer
Admin & Developer
Posts: 6832
Joined: 2004-04-23 10:21
Contact:

Re: Will there be an update to UVNC SC

Post by Rudi De Vos »

I will add it to the todo list...
Post Reply