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
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
Creator uses old version of plugin--SOLVED
-
- Posts: 5
- Joined: 2006-09-05 19:06
Creator uses old version of plugin--SOLVED
Last edited by markusmueller on 2006-09-06 22:34, edited 1 time in total.
Re: Creator uses old version of plugin
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..
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..
-
- Posts: 5
- Joined: 2006-09-05 19:06
Re: Creator uses old version of plugin
I tried that, but it didn't work. The creator used my supplied rc4.key but not the plugin included in the zip-file.bevtech wrote:can you place the dsm plugin and your key file into your zip file?? Will that work??
- Rudi De Vos
- Admin & Developer
- Posts: 6863
- Joined: 2004-04-23 10:21
- Contact:
Re: Creator uses old version of plugin
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.
First part extract local files
Your provided zip is extracted over the local files
Last part is the creation of the exe
When you copy all files manual in a directory, you can execute
to manual create the exe
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
Code: Select all
cd c:\apachefriends\minivnc\extract\%1
7z e %1.zip -y
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
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
-
- Posts: 5
- Joined: 2006-09-05 19:06
Re: Creator uses old version of plugin
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.Rudi De Vos wrote:The creator based on rel1.00 allow defaults to be overwritten.[...]
Best regards
Markus