3
edits
Changes
Putty
,no edit summary
</packages>
</pre>
Here's a package.xml for distributing the putty.exe withou the installer.
It installs to the System32 folder for quick Start/Run access.
<pre>
<?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\'>
<exit code="0" />
</install>
<remove cmd='cmd.exe /C del c:\windows\system32\putty.exe' />
<upgrade cmd='cmd.exe /C copy /y %SOFTWARE%\putty\putty.exe c:\windows\system32\' />
</package>
</packages>
</pre>
[[category:Silent Installers|Putty]]