Changes

UltraVNC

2,543 bytes added, 23:05, 20 November 2012
no edit summary
Downloads can be done from the [http://www.uvnc.com/ UltraVNC website].
 
== Package for UltraVNC 1.1.7 x64 ==
 
This builds slightly on the example from 1.0.6.4 and was tested with Windows 7 x64 Clients.
 
You need UltraVNC_1_1_7_x64_Setup.exe and UltraVNC_1_1_7_x64_Addon.exe and create two install files (installer.exe /saveinf=file for both Setup and Addon).
For the mirror Driver you need two Windows files certmgr.exe and devcon.exe (x64 Version) which you can find via Google. To get rid of the certificate warning from Windows 7 during the driver Installation we need the .cer file. Extract it from the setupdrv.exe (Right click on the file -> properties -> digital signature -> etc.). After the Installation I had the problem that the driver wasn´t recognized by the System. So i manually had to update it with the devcon.exe.
 
In the end there should be the Setup.exe, addon.exe, both .inf files, .cert file, certmgt.exe and devcon.exe in your setupfolder.
 
<source lang="xml">
<package id="ultravnc" name="Ultra VNC" revision="117" priority="0">
<check type="uninstall" condition="versiongreaterorequal" path="UltraVnc" value="1.1.7" />
 
<install cmd="net stop uvnc_service">
<exit code="any" />
</install>
<install cmd="sc delete uvnc_service">
<exit code="any" />
</install>
<install cmd='%SOFTWARE%\ultravnc\UltraVNC_1_1_7_x64_Setup.exe /verysilent /loadinf="%SOFTWARE%\ultravnc\setup.inf"' />
<install cmd='%comspec% /c mkdir "C:\Program Files\uvnc bvba\UltraVNC\driver"'>
<exit code="any" />
</install>
<install cmd='%SOFTWARE%\ultravnc\UltraVNC_1_1_7_x64_Addons.exe /verysilent /loadinf="%SOFTWARE%\ultravnc\addons.inf"' />
 
<install cmd='%comspec% /c %SOFTWARE%\ultravnc\certmgr.exe -add %SOFTWARE%\ultravnc\ultravnc.cer -s -r localMachine trustedpublisher' />
<install cmd='"C:\Program Files\uvnc bvba\UltraVNC\driver\setupdrv.exe" installs' />
<install cmd='"%SOFTWARE%\ultravnc\devcon.exe" update "C:\Program Files\uvnc bvba\UltraVNC\driver\driver\mv2.inf" mv_hook_display_driver2' >
<exit code="any" />
</install>
 
<install cmd='%comspec% /c copy /Y %SOFTWARE%\ultravnc\ultravnc.ini "C:\Program Files\uvnc bvba\UltraVNC"' />
<upgrade include="install"/>
 
<remove cmd='net stop uvnc_service'>
<exit code='0' />
<exit code='2' />
</remove>
<remove cmd='sc delete uvnc_service' />
<remove cmd='"C:\Program Files\uvnc bvba\UltraVNC\unins000.exe" /verysilent /norestart' />
<remove cmd='%comspec% /c rmdir /S /Q "C:\Program Files\uvnc bvba"' />
</package>
</source>
== Package for UltraVNC 1.0.6.4 ==
1
edit