Difference between revisions of "OpenVPN"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
m
Line 1: Line 1:
 
Silent installer for OpenVPN.
 
Silent installer for OpenVPN.
 +
 +
*See [[WPKG over VPN]], if you don't want WPKG to start when computer is using VPN.
  
 
<source lang="xml">
 
<source lang="xml">

Revision as of 18:51, 29 January 2009

Silent installer for OpenVPN.

  • See WPKG over VPN, if you don't want WPKG to start when computer is using VPN.
<?xml version="1.0" encoding="UTF-8"?>
<packages>
 	<package 
 		id="openvpn_v2" 
 		name="OpenVPN v2.0.9" 
 		revision="209" 
 		reboot="false" 
 		priority="0">
 
 		<check type="file" condition="exists" path="%PROGRAMFILES%\OpenVPN\bin\openvpn.exe" />
 
 		<install cmd='"%WPKGROOT%\tools\DriverSigning-Off.exe"' />
 		<install cmd='"%SOFTWARE%\OpenVPN v2\openvpn-2.0.9-install.exe" /S' />
 		<install cmd='"%WPKGROOT%\tools\DriverSigning-On.exe"' />
 		<install cmd='%COMSPEC% /c copy "%SOFTWARE%\OpenVPN v2\config\*.*" "%PROGRAMFILES%\OpenVPN\config\"' />
 		<install cmd='sc config openvpnservice start= auto' />
 		<!--<install cmd='sc start openvpnservice' />-->
 
 		<remove cmd='%COMSPEC% /c del /q "%PROGRAMFILES%\OpenVPN\config\*.*"' />
 		<remove cmd='"%PROGRAMFILES%\OpenVPN\Uninstall.exe" /S' />
 	</package>
</packages>


DriverSigning-On/Off tool or direct link DriverSigning.zip (you have to register).