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

Creator uses old version of plugin--SOLVED

Single Click discussions / bugs
Locked
markusmueller
Posts: 5
Joined: 2006-09-05 19:06

Creator uses old version of plugin--SOLVED

Post by markusmueller »

Hi,

I'm using the creator http://sc.uvnc.com/ to create my UltraVNC SingleClick Version. I had massive problems with the encrypted connections until I found out, that the creator puts in an older version of the MSRC4-plugin (1.1.6) than I'm using currently (1.2.2). Is there another creator that uses the latest version of the plugin or do I have to revert to the older version 1.1.6 on my local machine?

Best regards
Markus
Last edited by markusmueller on 2006-09-06 22:34, edited 1 time in total.
bevtech
800
800
Posts: 2168
Joined: 2005-08-03 14:07
Location: Pennsylvania, United States

Re: Creator uses old version of plugin

Post by bevtech »

can you place the dsm plugin and your key file into your zip file?? Will that work??
Bevtech

Windows XP Home, Pro SP2, Windows 2003 SBS server SP2(EN), Windows Media Center Editon 2005,Windows Vista Home Prem.,Fedora Core 6,Win9X, PChelpware Rel 1.0,
UVNC V 1.0.8.2

User not developer..;)
markusmueller
Posts: 5
Joined: 2006-09-05 19:06

Re: Creator uses old version of plugin

Post by markusmueller »

bevtech wrote:can you place the dsm plugin and your key file into your zip file?? Will that work??
I tried that, but it didn't work. The creator used my supplied rc4.key but not the plugin included in the zip-file.
User avatar
Rudi De Vos
Admin & Developer
Admin & Developer
Posts: 6863
Joined: 2004-04-23 10:21
Contact:

Re: Creator uses old version of plugin

Post by Rudi De Vos »

The creator based on rel1.00 allow defaults to be overwritten.
We first add the local files and then overwrite tem with the files provided
in the zip.
+You need to use the same name for the plugin as you find back in the exe.
+ The plugin need to be a noreg plugin. The plugin need to find the
key in the current directory and not via a registry entry.

Code: Select all

@ECHO OFF

mkdir c:\apachefriends\minivnc\extract\%1

REM del /q c:\apachefriends\minivnc\extract\%1\*
copy c:\apachefriends\minivnc\icon1.ico c:\apachefriends\minivnc\extract\%1
copy c:\apachefriends\minivnc\upx.exe c:\apachefriends\minivnc\extract\%1
copy c:\apachefriends\minivnc\replaceicon.exe c:\apachefriends\minivnc\extract\%1

copy c:\apachefriends\minivnc\vnchooks.dll c:\apachefriends\minivnc\extract\%1

copy c:\apachefriends\minivnc\MSRC4Plugin.dsm c:\apachefriends\minivnc\extract\%1

copy c:\upload\foo\%1.zip c:\apachefriends\minivnc\extract\%1

copy c:\apachefriends\minivnc\UltraVnc.sfx c:\apachefriends\minivnc\extract\%1

copy c:\apachefriends\minivnc\config.txt c:\apachefriends\minivnc\extract\%1

copy c:\apachefriends\minivnc\7z.exe c:\apachefriends\minivnc\extract\%1

copy c:\apachefriends\minivnc\winvnc.exe c:\apachefriends\minivnc\extract\%1
First part extract local files

Code: Select all

cd c:\apachefriends\minivnc\extract\%1

7z e %1.zip -y
Your provided zip is extracted over the local files

Code: Select all

replaceicon.exe ultravnc.sfx icon1.ico
upx --best --crp-ms=999999 --nrv2b Ultravnc.sfx

7z a -mx=9 -t7z UltraVncSC.7z winvnc.exe vnchooks.dll rc4.key MSRC4Plugin.dsm helpdesk.txt icon1.ico icon2.ico logo.bmp background.bmp

copy /b UltraVnc.sfx + config.txt + UltraVncSC.7z UltraVncSC.exe

Last part is the creation of the exe

When you copy all files manual in a directory, you can execute

Code: Select all

upx --best --crp-ms=999999 --nrv2b Ultravnc.sfx
7z a -mx=9 -t7z UltraVncSC.7z winvnc.exe vnchooks.dll rc4.key MSRC4Plugin.dsm helpdesk.txt icon1.ico icon2.ico logo.bmp background.bmp
copy /b UltraVnc.sfx + config.txt + UltraVncSC.7z UltraVncSC.exe
to manual create the exe
markusmueller
Posts: 5
Joined: 2006-09-05 19:06

Re: Creator uses old version of plugin

Post by markusmueller »

Rudi De Vos wrote:The creator based on rel1.00 allow defaults to be overwritten.[...]
Case closed :-) That was my problem, I was using the wrong creator. This one worked like a charm. Thanks a lot for your help, I really appreciate it.

Best regards
Markus
Locked