Difference between revisions of "WinSCP"
From WPKG | Open Source Software Deployment and Distribution
(→WinSCP 4.2.5) |
(→WinSCP 4.2.5) |
||
Line 6: | Line 6: | ||
<packages> | <packages> | ||
− | |||
<package | <package | ||
id="winscp" | id="winscp" | ||
Line 18: | Line 17: | ||
<remove cmd='"%PROGRAMFILES%\WinSCP\unins000.exe" /VERYSILENT /NORESTART' /> | <remove cmd='"%PROGRAMFILES%\WinSCP\unins000.exe" /VERYSILENT /NORESTART' /> | ||
</package> | </package> | ||
− | |||
</packages> | </packages> | ||
</source> | </source> | ||
Note the /NOCANDY parameter which is necessary when /VERYSILENT flag is used. Without it a dialog box containing ''Please choose an option'' text will pop up and halt the whole installation process. I suspect this has something to do with inclusion of PalTalk in the installer. | Note the /NOCANDY parameter which is necessary when /VERYSILENT flag is used. Without it a dialog box containing ''Please choose an option'' text will pop up and halt the whole installation process. I suspect this has something to do with inclusion of PalTalk in the installer. | ||
+ | winscp.inf file can be generated by running: | ||
+ | winscp425setup.exe /SAVEINF="winscp.ini" | ||
== WinSCP 4 == | == WinSCP 4 == |
Revision as of 18:20, 29 December 2009
This is a silent installer and uninstaller for WinSCP.
WinSCP 4.2.5
<?xml version="1.0" encoding="UTF-8"?>
<packages>
<package
id="winscp"
name="WinSCP"
revision="200912280"
reboot="false"
priority="10">
<check type="uninstall" condition="exists" path="WinSCP 4.2.5" />
<install cmd='"%SOFTWARE%\winscp\winSCP4.2.5\winscp425setup.exe" /NOCANDY /LOADINF="%SOFTWARE%\winscp\winSCP4.2.5\winscp.inf" /VERYSILENT /NORESTART' />
<upgrade cmd='"%SOFTWARE%\winscp\winSCP4.2.5\winscp425setup.exe" /NOCANDY /LOADINF="%SOFTWARE%\winscp\winSCP4.2.5\winscp.inf" /VERYSILENT /NORESTART' />
<remove cmd='"%PROGRAMFILES%\WinSCP\unins000.exe" /VERYSILENT /NORESTART' />
</package>
</packages>
Note the /NOCANDY parameter which is necessary when /VERYSILENT flag is used. Without it a dialog box containing Please choose an option text will pop up and halt the whole installation process. I suspect this has something to do with inclusion of PalTalk in the installer. winscp.inf file can be generated by running:
winscp425setup.exe /SAVEINF="winscp.ini"
WinSCP 4
Use the following XML file for silent installation:
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package
id='WinSCP'
name='WinSCP'
revision='415'
priority='0'
reboot='false'>
<check type='uninstall' condition='exists' path='WinSCP 4.1.5'/>
<install cmd='%SOFTWARE%\winscp\winscp415setup.exe /VERYSILENT /NORESTART /LOADINF="%SOFTWARE%\winscp\default.ini"'/>
<upgrade cmd='%SOFTWARE%\winscp\winscp415setup.exe /VERYSILENT /NORESTART /LOADINF="%SOFTWARE%\winscp\default.ini"'/>
<remove cmd='"%ProgramFiles%\WinSCP\unins000.exe" /VERYSILENT'/>
</package>
</packages>
It is using InnoSetup. The installation is described on their Homepage. Basically you need to execute
winscp406setup.exe /SAVEINF="default.inf"
WinSCP 3
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package
id="winscp3"
name="WinSCP v3"
revision="3560"
priority="0"
reboot="false">
<check type="uninstall" condition="exists" path="WinSCP 3.5.6"/>
<install cmd='%SOFTWARE%\winscp\winscp356setup.exe /sp- /silent /norestart'/>
<remove cmd='"%PROGRAMFILES%\WinSCP3\unins000.exe" /sp- /silent /norestart'/>
</package>
</packages>