You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
2.7 KiB
57 lines
2.7 KiB
13 years ago
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<packages>
|
||
|
<package id="tightvnc"
|
||
|
name="Serveur VNC TightVNC"
|
||
|
revision="4"
|
||
|
priority="10"
|
||
|
reboot="false">
|
||
|
|
||
|
<variable name="PKG_VERSION" value="2.0.4" />
|
||
|
|
||
|
<variable architecture="x86" name="INSTALL_PATH" value="%PROGRAMFILES%\TightVNC" />
|
||
|
<variable architecture="x64" name="INSTALL_PATH" value="%PROGRAMFILES(x86)%\TightVNC" />
|
||
|
<variable architecture="x86" name="REG_PATH" value="%SETTINGS%\tightvnc\tightvnc_x86.reg" />
|
||
|
<variable architecture="x64" name="REG_PATH" value="%SETTINGS%\tightvnc\tightvnc_x64.reg" />
|
||
|
|
||
|
<check type="uninstall" condition="exists" path="TightVNC %PKG_VERSION%" />
|
||
|
|
||
|
<!-- Remove RealVNC if installed -->
|
||
|
<install cmd='%COMSPEC% /C if exist "%PROGRAMFILES%\RealVNC\VNC4\unins000.exe" "%PROGRAMFILES%\RealVNC\VNC4\unins000.exe" /SP- /VERYSILENT /NORESTART' />
|
||
|
|
||
|
<!-- Install TightVNC -->
|
||
|
<install cmd='"%SOFTWARE%\tightvnc\tightvnc-%PKG_VERSION%-setup.exe" /S' />
|
||
|
<!-- Install the TightVNC Server as a service -->
|
||
|
<install cmd='"%INSTALL_PATH%\tvnserver" -install -silent' >
|
||
|
<exit code="1" />
|
||
|
<exit code="0" />
|
||
|
</install>
|
||
|
<!-- Stop the TightVNC Server whilst we import settings -->
|
||
|
<install cmd='"%INSTALL_PATH%\tvnserver" -stop -silent' >
|
||
|
<exit code="1" />
|
||
|
<exit code="0" />
|
||
|
</install>
|
||
|
<!-- Import settings -->
|
||
|
<install cmd='%COMSPEC% /C regedit /s "%REG_PATH%"' />
|
||
|
<!-- Restart the TightVNC Server -->
|
||
|
<install cmd='"%INSTALL_PATH%\tvnserver" -start -silent' />
|
||
|
|
||
|
<!-- Remove RealVNC if installed -->
|
||
|
<upgrade cmd='%COMSPEC% /C if exist "%PROGRAMFILES%\RealVNC\VNC4\unins000.exe" "%PROGRAMFILES%\RealVNC\VNC4\unins000.exe" /SP- /VERYSILENT /NORESTART' />
|
||
|
<upgrade cmd='"%SOFTWARE%\tightvnc\tightvnc-%PKG_VERSION%-setup.exe" /S' />
|
||
|
<upgrade cmd='"%INSTALL_PATH%\tvnserver" -reinstall -silent' />
|
||
|
<upgrade cmd='"%INSTALL_PATH%\tvnserver" -stop -silent' >
|
||
|
<exit code="1" />
|
||
|
<exit code="0" />
|
||
|
</upgrade>
|
||
|
<upgrade cmd='%COMSPEC% /C regedit /s "%REG_PATH%"' />
|
||
|
<upgrade cmd='"%INSTALL_PATH%\tvnserver" -start -silent' />
|
||
|
|
||
|
<remove cmd='%COMSPEC% /C "%INSTALL_PATH%\uninstall.exe" /S' />
|
||
|
<!-- Uninstall returns immediatly, so just wait a few seconds for it to remove before checking the status again
|
||
|
Unfortunatly, WINDOWS has no sleep commands -->
|
||
|
<remove cmd='%COMSPEC% /C ping -n 5 127.0.0.1 1>NUL 2>NUL' >
|
||
|
<exit code="any" />
|
||
|
</remove>
|
||
|
</package>
|
||
|
</packages>
|