Difference between revisions of "Putty"
From WPKG | Open Source Software Deployment and Distribution
(Made more readable, added PRE tags and added url) |
|||
Line 1: | Line 1: | ||
− | This is a silent installer and uninstaller for Putty. Putty is an SSH (and other secure protocol) client which allows you to open a terminal to your Unix server from Windows. | + | 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. | |
− | + | <pre> | |
− | + | <?xml version="1.0" encoding="UTF-8"?> | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
+ | <packages> | ||
+ | <package | ||
+ | id="putty" | ||
+ | name="Putty" | ||
+ | revision="1" | ||
+ | priority="0" | ||
+ | reboot="false"> | ||
+ | <check type="uninstall" condition="exists" path="PuTTY version 0.58" /> | ||
+ | <install cmd='%PACKAGES%\putty\putty-0.58-installer.exe /sp- /silent' /> | ||
+ | <remove cmd='"%PROGRAMFILES%\PuTTY\unins000.exe" /sp- /silent /norestart' /> | ||
+ | <upgrade cmd='' /> | ||
+ | </package> | ||
+ | </packages> | ||
+ | </pre> | ||
[[category:Silent Installers|Putty]] | [[category:Silent Installers|Putty]] |
Revision as of 09:58, 21 September 2006
This is a silent installer and uninstaller for Putty.
Putty is an SSH (and other secure protocol) client which allows you to open a terminal to your Unix server from Windows.
<?xml version="1.0" encoding="UTF-8"?> <packages> <package id="putty" name="Putty" revision="1" priority="0" reboot="false"> <check type="uninstall" condition="exists" path="PuTTY version 0.58" /> <install cmd='%PACKAGES%\putty\putty-0.58-installer.exe /sp- /silent' /> <remove cmd='"%PROGRAMFILES%\PuTTY\unins000.exe" /sp- /silent /norestart' /> <upgrade cmd='' /> </package> </packages>