Changes

Putty

1,289 bytes added, 20 May
no edit summary
This is a silent installer and uninstaller for [http://www.chiark.greenend.org.uk/~sgtatham/putty/ Putty].<br>
[http://www.chiark.greenend.org.uk/~sgtatham/putty/ Putty] is an [http://www.openssh.org SSH] (and other secure protocol) client which allows you to open a terminal to your Unix server from Windows.
 
== 64-bit installer ==
 
<source lang="xml">
 
<?xml version="1.0" encoding="UTF-8"?>
 
<packages:packages
xmlns:packages="http://www.wpkg.org/packages" xmlns:wpkg="http://www.wpkg.org/wpkg" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.wpkg.org/packages ../xsd/packages.xsd" >
 
<package id="putty"
name="PuTTY"
revision="%PKG_VERSION%"
priority="5"
reboot="false">
 
<variable name="PKG_VERSION" value="0.81" />
<variable name="PKG_NAME" value="putty" />
<variable name="PKG_SOURCE" value="%SOFTWARE%\%PKG_NAME%\putty-64bit-%PKG_VERSION%-installer.msi" />
<variable name="PKG_DESTINATION" value="%ProgramFiles%\PuTTY\" />
<variable name="PKG_INSTALL_SWITCH" value="ALLUSERS=1"/>
<variable name="PKG_REMOVE_SWITCH" value="ALLUSERS=1"/>
 
<check type="uninstall" condition="versiongreaterorequal" path="PuTTY release %PKG_VERSION% (64-bit)" value="%PKG_VERSION%" />
 
<install cmd='MsiExec.exe /norestart /i "%PKG_SOURCE%" %PKG_INSTALL_SWITCH% /qn' />
 
<upgrade include="install" />
 
<remove cmd='MsiExec.exe /norestart /x "%PKG_SOURCE%" /qn %PKG_REMOVE_SWITCH%' />
 
</package>
 
</packages:packages>
 
</source>
== Installer (32bit package works on 32bit and 64bit systems) ==
15
edits