Difference between revisions of "Cisco VPN"
From WPKG | Open Source Software Deployment and Distribution
| Line 1: | Line 1: | ||
| − | You need to download your desired version of the Cisco VPN client from the | + | Silent installer for Cisco Systems VPN Client. |
| + | |||
| + | You need to download your desired version of the Cisco VPN client from the cisco.com website and extract to your WPKG repository. Here, I have downloaded version 5.0.05.0300-K9. Please note you will need to change the install check and the MSIEXEC uninstall based on the version you are installing. | ||
<source lang="xml"> | <source lang="xml"> | ||
Revision as of 19:20, 2 October 2008
Silent installer for Cisco Systems VPN Client.
You need to download your desired version of the Cisco VPN client from the cisco.com website and extract to your WPKG repository. Here, I have downloaded version 5.0.05.0300-K9. Please note you will need to change the install check and the MSIEXEC uninstall based on the version you are installing.
<package id='ciscovpn' name='Cisco VPN Adapter' revision='50040300' priority='800' reboot='false' >
<check type='uninstall' condition='exists' path='Cisco Systems VPN Client 5.0.04.0300' />
<install cmd='xcopy %software%\cisco\vpnclient50040300\*.* %TEMP%\ciscovpn\ /y /i' />
<install cmd='msiexec /qn /norestart /i "%TEMP%\ciscovpn\vpnclient_setup.msi"' >
<exit code='194' reboot='true' />
<exit code='3010' reboot='true' />
</install>
<remove cmd='msiexec /q /x{A7091E1D-36A4-47F1-A739-173CC341414F}' >
<exit code='194' reboot='true' />
<exit code='3010' reboot='true' />
</remove>
</package>