├── .gitignore ├── OpenVPN ├── AsyncEventDetail.cs ├── Communicator.cs ├── Connection.cs ├── DebugEventArgs.cs ├── GotLineEventArgs.cs ├── LogEventArgs.cs ├── LogManager.cs ├── ManagementLogic.cs ├── ManagementParser.cs ├── NeedCardIDEventArgs.cs ├── NeedLoginAndPasswordEventArgs.cs ├── NeedPasswordEventArgs.cs ├── OVPNCommunicator.cs ├── OVPNConfigParser.cs ├── OVPNConnection.cs ├── OVPNLogEventArgs.cs ├── OVPNLogManager.cs ├── OVPNManagementLogic.cs ├── OVPNManagementParser.cs ├── OVPNNeedCardIDEventArgs.cs ├── OVPNNeedLoginAndPasswordEventArgs.cs ├── OVPNNeedPasswordEventArgs.cs ├── OVPNService.cs ├── OVPNServiceConnection.cs ├── OVPNUserConnection.cs ├── OpenVPN.csproj ├── OpenVPN.csproj.user ├── PKCS11Detail.cs ├── Properties │ └── AssemblyInfo.cs ├── ServiceConnection.cs ├── States │ ├── State.cs │ ├── StateChangedEventArgs.cs │ ├── StateSnapshot.cs │ └── VPNConnectionState.cs ├── UserSpaceConnection.cs ├── UserSpaceService.cs ├── app.manifest └── license.txt ├── OpenVPNManager.FxCop ├── OpenVPNManager.sln ├── OpenVPNManager ├── FrmAbout.Designer.cs ├── FrmAbout.cs ├── FrmAbout.de.resx ├── FrmAbout.resx ├── FrmGlobalStatus.Designer.cs ├── FrmGlobalStatus.cs ├── FrmGlobalStatus.de.resx ├── FrmGlobalStatus.resx ├── FrmLoginAndPasswd.Designer.cs ├── FrmLoginAndPasswd.cs ├── FrmLoginAndPasswd.de.resx ├── FrmLoginAndPasswd.resx ├── FrmPasswd.Designer.cs ├── FrmPasswd.cs ├── FrmPasswd.de.resx ├── FrmPasswd.resx ├── FrmSelectPKCS11Key.Designer.cs ├── FrmSelectPKCS11Key.cs ├── FrmSelectPKCS11Key.de.resx ├── FrmSelectPKCS11Key.resx ├── FrmSettings.Designer.cs ├── FrmSettings.cs ├── FrmSettings.de.resx ├── FrmSettings.resx ├── FrmStatus.Designer.cs ├── FrmStatus.cs ├── FrmStatus.de.resx ├── FrmStatus.resx ├── IPLabel.cs ├── OpenVPNManager.csproj ├── OpenVPNManager.csproj.user ├── ProfileSettings.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── RTLMessageBox.cs ├── Resources │ ├── accept.png │ ├── ack32.ico │ ├── arrow_refresh.png │ ├── blueled.png │ ├── cancel.png │ ├── connect.png │ ├── disconnect.png │ ├── exit.png │ ├── fail32.ico │ ├── greenled.png │ ├── icon.ico │ ├── icon.xcf │ ├── information.png │ ├── magnifier.png │ ├── redled.png │ ├── script_edit.png │ ├── tooloptions.png │ ├── update.png │ ├── waiting32.ico │ ├── waiting321.ico │ ├── wrench.png │ └── yellowled.png ├── SimpleComm.cs ├── Update.cs ├── VPNConfig.cs ├── VPNInfoBox.Designer.cs ├── VPNInfoBox.cs ├── VPNInfoBox.de.resx ├── VPNInfoBox.resx ├── app.config ├── app.manifest ├── desktop.ini ├── helper.cs ├── icons │ ├── README.txt │ └── examples │ │ ├── Connected.ico │ │ ├── Connecting.ico │ │ ├── Disconnected.ico │ │ └── Multiple.ico ├── lang │ ├── strings.Designer.cs │ ├── strings.de.Designer.cs │ ├── strings.de.resx │ └── strings.resx └── license.txt ├── OpenVPNManagerService ├── OpenVPNManagerService.cs ├── OpenVPNManagerService.csproj ├── OpenVPNManagerService.csproj.user ├── OpenVPNService.cs ├── OpenVPNServiceRunner.Designer.cs ├── OpenVPNServiceRunner.cs ├── OpenVPNServiceRunner.resx ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── ServiceHelper.cs ├── ServiceInstallerProcess.cs ├── app.config └── app.manifest ├── OpenVPNUtils ├── ConfigParser.cs ├── OpenVPNUtils.csproj ├── Properties │ └── AssemblyInfo.cs └── UtilsHelper.cs ├── README.md ├── Setup ├── .gitignore ├── lang.nsh └── setup.nsi ├── license.txt └── package.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/.gitignore -------------------------------------------------------------------------------- /OpenVPN/AsyncEventDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPN/AsyncEventDetail.cs -------------------------------------------------------------------------------- /OpenVPN/Communicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPN/Communicator.cs -------------------------------------------------------------------------------- /OpenVPN/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPN/Connection.cs -------------------------------------------------------------------------------- /OpenVPN/DebugEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPN/DebugEventArgs.cs -------------------------------------------------------------------------------- /OpenVPN/GotLineEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPN/GotLineEventArgs.cs -------------------------------------------------------------------------------- /OpenVPN/LogEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPN/LogEventArgs.cs -------------------------------------------------------------------------------- /OpenVPN/LogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPN/LogManager.cs -------------------------------------------------------------------------------- /OpenVPN/ManagementLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPN/ManagementLogic.cs -------------------------------------------------------------------------------- /OpenVPN/ManagementParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPN/ManagementParser.cs -------------------------------------------------------------------------------- /OpenVPN/NeedCardIDEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPN/NeedCardIDEventArgs.cs -------------------------------------------------------------------------------- /OpenVPN/NeedLoginAndPasswordEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPN/NeedLoginAndPasswordEventArgs.cs -------------------------------------------------------------------------------- /OpenVPN/NeedPasswordEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPN/NeedPasswordEventArgs.cs -------------------------------------------------------------------------------- /OpenVPN/OVPNCommunicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPN/OVPNCommunicator.cs -------------------------------------------------------------------------------- /OpenVPN/OVPNConfigParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPN/OVPNConfigParser.cs -------------------------------------------------------------------------------- /OpenVPN/OVPNConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPN/OVPNConnection.cs -------------------------------------------------------------------------------- /OpenVPN/OVPNLogEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPN/OVPNLogEventArgs.cs -------------------------------------------------------------------------------- /OpenVPN/OVPNLogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPN/OVPNLogManager.cs -------------------------------------------------------------------------------- /OpenVPN/OVPNManagementLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPN/OVPNManagementLogic.cs -------------------------------------------------------------------------------- /OpenVPN/OVPNManagementParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPN/OVPNManagementParser.cs -------------------------------------------------------------------------------- /OpenVPN/OVPNNeedCardIDEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPN/OVPNNeedCardIDEventArgs.cs -------------------------------------------------------------------------------- /OpenVPN/OVPNNeedLoginAndPasswordEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPN/OVPNNeedLoginAndPasswordEventArgs.cs -------------------------------------------------------------------------------- /OpenVPN/OVPNNeedPasswordEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPN/OVPNNeedPasswordEventArgs.cs -------------------------------------------------------------------------------- /OpenVPN/OVPNService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPN/OVPNService.cs -------------------------------------------------------------------------------- /OpenVPN/OVPNServiceConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPN/OVPNServiceConnection.cs -------------------------------------------------------------------------------- /OpenVPN/OVPNUserConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPN/OVPNUserConnection.cs -------------------------------------------------------------------------------- /OpenVPN/OpenVPN.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPN/OpenVPN.csproj -------------------------------------------------------------------------------- /OpenVPN/OpenVPN.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPN/OpenVPN.csproj.user -------------------------------------------------------------------------------- /OpenVPN/PKCS11Detail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPN/PKCS11Detail.cs -------------------------------------------------------------------------------- /OpenVPN/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPN/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OpenVPN/ServiceConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPN/ServiceConnection.cs -------------------------------------------------------------------------------- /OpenVPN/States/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPN/States/State.cs -------------------------------------------------------------------------------- /OpenVPN/States/StateChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPN/States/StateChangedEventArgs.cs -------------------------------------------------------------------------------- /OpenVPN/States/StateSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPN/States/StateSnapshot.cs -------------------------------------------------------------------------------- /OpenVPN/States/VPNConnectionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPN/States/VPNConnectionState.cs -------------------------------------------------------------------------------- /OpenVPN/UserSpaceConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPN/UserSpaceConnection.cs -------------------------------------------------------------------------------- /OpenVPN/UserSpaceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPN/UserSpaceService.cs -------------------------------------------------------------------------------- /OpenVPN/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPN/app.manifest -------------------------------------------------------------------------------- /OpenVPN/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPN/license.txt -------------------------------------------------------------------------------- /OpenVPNManager.FxCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager.FxCop -------------------------------------------------------------------------------- /OpenVPNManager.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager.sln -------------------------------------------------------------------------------- /OpenVPNManager/FrmAbout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/FrmAbout.Designer.cs -------------------------------------------------------------------------------- /OpenVPNManager/FrmAbout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/FrmAbout.cs -------------------------------------------------------------------------------- /OpenVPNManager/FrmAbout.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/FrmAbout.de.resx -------------------------------------------------------------------------------- /OpenVPNManager/FrmAbout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/FrmAbout.resx -------------------------------------------------------------------------------- /OpenVPNManager/FrmGlobalStatus.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/FrmGlobalStatus.Designer.cs -------------------------------------------------------------------------------- /OpenVPNManager/FrmGlobalStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/FrmGlobalStatus.cs -------------------------------------------------------------------------------- /OpenVPNManager/FrmGlobalStatus.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/FrmGlobalStatus.de.resx -------------------------------------------------------------------------------- /OpenVPNManager/FrmGlobalStatus.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/FrmGlobalStatus.resx -------------------------------------------------------------------------------- /OpenVPNManager/FrmLoginAndPasswd.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/FrmLoginAndPasswd.Designer.cs -------------------------------------------------------------------------------- /OpenVPNManager/FrmLoginAndPasswd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/FrmLoginAndPasswd.cs -------------------------------------------------------------------------------- /OpenVPNManager/FrmLoginAndPasswd.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/FrmLoginAndPasswd.de.resx -------------------------------------------------------------------------------- /OpenVPNManager/FrmLoginAndPasswd.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/FrmLoginAndPasswd.resx -------------------------------------------------------------------------------- /OpenVPNManager/FrmPasswd.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/FrmPasswd.Designer.cs -------------------------------------------------------------------------------- /OpenVPNManager/FrmPasswd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/FrmPasswd.cs -------------------------------------------------------------------------------- /OpenVPNManager/FrmPasswd.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/FrmPasswd.de.resx -------------------------------------------------------------------------------- /OpenVPNManager/FrmPasswd.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/FrmPasswd.resx -------------------------------------------------------------------------------- /OpenVPNManager/FrmSelectPKCS11Key.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/FrmSelectPKCS11Key.Designer.cs -------------------------------------------------------------------------------- /OpenVPNManager/FrmSelectPKCS11Key.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/FrmSelectPKCS11Key.cs -------------------------------------------------------------------------------- /OpenVPNManager/FrmSelectPKCS11Key.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/FrmSelectPKCS11Key.de.resx -------------------------------------------------------------------------------- /OpenVPNManager/FrmSelectPKCS11Key.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/FrmSelectPKCS11Key.resx -------------------------------------------------------------------------------- /OpenVPNManager/FrmSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/FrmSettings.Designer.cs -------------------------------------------------------------------------------- /OpenVPNManager/FrmSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/FrmSettings.cs -------------------------------------------------------------------------------- /OpenVPNManager/FrmSettings.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/FrmSettings.de.resx -------------------------------------------------------------------------------- /OpenVPNManager/FrmSettings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/FrmSettings.resx -------------------------------------------------------------------------------- /OpenVPNManager/FrmStatus.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/FrmStatus.Designer.cs -------------------------------------------------------------------------------- /OpenVPNManager/FrmStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/FrmStatus.cs -------------------------------------------------------------------------------- /OpenVPNManager/FrmStatus.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/FrmStatus.de.resx -------------------------------------------------------------------------------- /OpenVPNManager/FrmStatus.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/FrmStatus.resx -------------------------------------------------------------------------------- /OpenVPNManager/IPLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/IPLabel.cs -------------------------------------------------------------------------------- /OpenVPNManager/OpenVPNManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/OpenVPNManager.csproj -------------------------------------------------------------------------------- /OpenVPNManager/OpenVPNManager.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/OpenVPNManager.csproj.user -------------------------------------------------------------------------------- /OpenVPNManager/ProfileSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/ProfileSettings.cs -------------------------------------------------------------------------------- /OpenVPNManager/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/Program.cs -------------------------------------------------------------------------------- /OpenVPNManager/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OpenVPNManager/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /OpenVPNManager/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/Properties/Resources.resx -------------------------------------------------------------------------------- /OpenVPNManager/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /OpenVPNManager/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/Properties/Settings.settings -------------------------------------------------------------------------------- /OpenVPNManager/RTLMessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/RTLMessageBox.cs -------------------------------------------------------------------------------- /OpenVPNManager/Resources/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/Resources/accept.png -------------------------------------------------------------------------------- /OpenVPNManager/Resources/ack32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/Resources/ack32.ico -------------------------------------------------------------------------------- /OpenVPNManager/Resources/arrow_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/Resources/arrow_refresh.png -------------------------------------------------------------------------------- /OpenVPNManager/Resources/blueled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/Resources/blueled.png -------------------------------------------------------------------------------- /OpenVPNManager/Resources/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/Resources/cancel.png -------------------------------------------------------------------------------- /OpenVPNManager/Resources/connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/Resources/connect.png -------------------------------------------------------------------------------- /OpenVPNManager/Resources/disconnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/Resources/disconnect.png -------------------------------------------------------------------------------- /OpenVPNManager/Resources/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/Resources/exit.png -------------------------------------------------------------------------------- /OpenVPNManager/Resources/fail32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/Resources/fail32.ico -------------------------------------------------------------------------------- /OpenVPNManager/Resources/greenled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/Resources/greenled.png -------------------------------------------------------------------------------- /OpenVPNManager/Resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/Resources/icon.ico -------------------------------------------------------------------------------- /OpenVPNManager/Resources/icon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/Resources/icon.xcf -------------------------------------------------------------------------------- /OpenVPNManager/Resources/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/Resources/information.png -------------------------------------------------------------------------------- /OpenVPNManager/Resources/magnifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/Resources/magnifier.png -------------------------------------------------------------------------------- /OpenVPNManager/Resources/redled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/Resources/redled.png -------------------------------------------------------------------------------- /OpenVPNManager/Resources/script_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/Resources/script_edit.png -------------------------------------------------------------------------------- /OpenVPNManager/Resources/tooloptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/Resources/tooloptions.png -------------------------------------------------------------------------------- /OpenVPNManager/Resources/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/Resources/update.png -------------------------------------------------------------------------------- /OpenVPNManager/Resources/waiting32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/Resources/waiting32.ico -------------------------------------------------------------------------------- /OpenVPNManager/Resources/waiting321.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/Resources/waiting321.ico -------------------------------------------------------------------------------- /OpenVPNManager/Resources/wrench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/Resources/wrench.png -------------------------------------------------------------------------------- /OpenVPNManager/Resources/yellowled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/Resources/yellowled.png -------------------------------------------------------------------------------- /OpenVPNManager/SimpleComm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/SimpleComm.cs -------------------------------------------------------------------------------- /OpenVPNManager/Update.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/Update.cs -------------------------------------------------------------------------------- /OpenVPNManager/VPNConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/VPNConfig.cs -------------------------------------------------------------------------------- /OpenVPNManager/VPNInfoBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/VPNInfoBox.Designer.cs -------------------------------------------------------------------------------- /OpenVPNManager/VPNInfoBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/VPNInfoBox.cs -------------------------------------------------------------------------------- /OpenVPNManager/VPNInfoBox.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/VPNInfoBox.de.resx -------------------------------------------------------------------------------- /OpenVPNManager/VPNInfoBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/VPNInfoBox.resx -------------------------------------------------------------------------------- /OpenVPNManager/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/app.config -------------------------------------------------------------------------------- /OpenVPNManager/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/app.manifest -------------------------------------------------------------------------------- /OpenVPNManager/desktop.ini: -------------------------------------------------------------------------------- 1 | [ViewState] 2 | Mode= 3 | Vid= 4 | FolderType=NotSpecified 5 | -------------------------------------------------------------------------------- /OpenVPNManager/helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/helper.cs -------------------------------------------------------------------------------- /OpenVPNManager/icons/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/icons/README.txt -------------------------------------------------------------------------------- /OpenVPNManager/icons/examples/Connected.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/icons/examples/Connected.ico -------------------------------------------------------------------------------- /OpenVPNManager/icons/examples/Connecting.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/icons/examples/Connecting.ico -------------------------------------------------------------------------------- /OpenVPNManager/icons/examples/Disconnected.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/icons/examples/Disconnected.ico -------------------------------------------------------------------------------- /OpenVPNManager/icons/examples/Multiple.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/icons/examples/Multiple.ico -------------------------------------------------------------------------------- /OpenVPNManager/lang/strings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/lang/strings.Designer.cs -------------------------------------------------------------------------------- /OpenVPNManager/lang/strings.de.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenVPNManager/lang/strings.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/lang/strings.de.resx -------------------------------------------------------------------------------- /OpenVPNManager/lang/strings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/lang/strings.resx -------------------------------------------------------------------------------- /OpenVPNManager/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManager/license.txt -------------------------------------------------------------------------------- /OpenVPNManagerService/OpenVPNManagerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManagerService/OpenVPNManagerService.cs -------------------------------------------------------------------------------- /OpenVPNManagerService/OpenVPNManagerService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManagerService/OpenVPNManagerService.csproj -------------------------------------------------------------------------------- /OpenVPNManagerService/OpenVPNManagerService.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManagerService/OpenVPNManagerService.csproj.user -------------------------------------------------------------------------------- /OpenVPNManagerService/OpenVPNService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManagerService/OpenVPNService.cs -------------------------------------------------------------------------------- /OpenVPNManagerService/OpenVPNServiceRunner.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManagerService/OpenVPNServiceRunner.Designer.cs -------------------------------------------------------------------------------- /OpenVPNManagerService/OpenVPNServiceRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManagerService/OpenVPNServiceRunner.cs -------------------------------------------------------------------------------- /OpenVPNManagerService/OpenVPNServiceRunner.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManagerService/OpenVPNServiceRunner.resx -------------------------------------------------------------------------------- /OpenVPNManagerService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManagerService/Program.cs -------------------------------------------------------------------------------- /OpenVPNManagerService/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManagerService/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OpenVPNManagerService/ServiceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManagerService/ServiceHelper.cs -------------------------------------------------------------------------------- /OpenVPNManagerService/ServiceInstallerProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManagerService/ServiceInstallerProcess.cs -------------------------------------------------------------------------------- /OpenVPNManagerService/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManagerService/app.config -------------------------------------------------------------------------------- /OpenVPNManagerService/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNManagerService/app.manifest -------------------------------------------------------------------------------- /OpenVPNUtils/ConfigParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNUtils/ConfigParser.cs -------------------------------------------------------------------------------- /OpenVPNUtils/OpenVPNUtils.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNUtils/OpenVPNUtils.csproj -------------------------------------------------------------------------------- /OpenVPNUtils/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNUtils/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OpenVPNUtils/UtilsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/OpenVPNUtils/UtilsHelper.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/README.md -------------------------------------------------------------------------------- /Setup/.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | -------------------------------------------------------------------------------- /Setup/lang.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/Setup/lang.nsh -------------------------------------------------------------------------------- /Setup/setup.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/Setup/setup.nsi -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/license.txt -------------------------------------------------------------------------------- /package.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwierum/openvpn-manager/HEAD/package.bat --------------------------------------------------------------------------------