29
edits
Changes
Putty
,Use new syntax highlighting plugin for package xml and standardize the xml layout.
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.
<presource lang="xml">
<?xml version="1.0" encoding="UTF-8"?>
<packages>
</packages>
</presource>
Here's a package.xml for distributing the putty.exe without the installer.
It installs to the System32 folder for quick Start/Run access.
<presource lang="xml">
<?xml version="1.0" encoding="UTF-8"?>
<packages>
<package
id="putty"
name="Putty"
revision="0"
reboot="false"
priority="0">
<check type="file" condition="exists" path="C:\windows\system32\putty.exe"/>
<install cmd='cmd.exe /C copy /y %SOFTWARE%\putty\putty.exe c:\windows\system32\'/>
<remove cmd='cmd.exe /C del c:\windows\system32\putty.exe'/>
</packages>
</presource>
[[category:Silent Installers]]