Difference between revisions of "Cisco VPN"
From WPKG | Open Source Software Deployment and Distribution
(Cisco VPN Client) |
|||
Line 4: | Line 4: | ||
<package id='ciscovpn' name='Cisco VPN Adapter' revision='50040300' priority='800' reboot='false' > | <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' /> | <check type='uninstall' condition='exists' path='Cisco Systems VPN Client 5.0.04.0300' /> | ||
− | <install cmd='xcopy % | + | <install cmd='xcopy %software%\cisco\vpnclient50040300\*.* %TEMP%\ciscovpn\ /y /i' /> |
<install cmd='msiexec /qn /norestart /i "%TEMP%\ciscovpn\vpnclient_setup.msi"' > | <install cmd='msiexec /qn /norestart /i "%TEMP%\ciscovpn\vpnclient_setup.msi"' > | ||
<exit code='194' reboot='true' /> | <exit code='194' reboot='true' /> |
Revision as of 18:25, 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 %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>