Difference between revisions of "Cisco VPN"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(Cisco VPN Client)
(No difference)

Revision as of 18:24, 2 October 2008

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 %wsoftware%\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>