diff --git a/automatic/openvpn/README.md b/automatic/openvpn/README.md index d7537e079..94b8b379a 100644 --- a/automatic/openvpn/README.md +++ b/automatic/openvpn/README.md @@ -43,6 +43,7 @@ following package parameter can be set: * `/DcoDriver` - install the OpenVPN Data Channel Offload driver * `/TapDriver` - install the TAP-Windows driver (NDIS6) * `/WintunDriver` - install the layer 3 TUN driver for Windows +* `/PLAP` - install Pre-Logon Access-Provider * `/Documentation` - install the OpenVPN documentation * `/OpenSSL` - install OpelSSL utilities for generating public/private key pairs * `/SampleConfig` - install OpenVPN client/server configuration examples diff --git a/automatic/openvpn/openvpn.nuspec b/automatic/openvpn/openvpn.nuspec index 4f2a44508..7e31ccac4 100644 --- a/automatic/openvpn/openvpn.nuspec +++ b/automatic/openvpn/openvpn.nuspec @@ -57,6 +57,7 @@ following package parameter can be set: * `/DcoDriver` - install the OpenVPN Data Channel Offload driver * `/TapDriver` - install the TAP-Windows driver (NDIS6) * `/WintunDriver` - install the layer 3 TUN driver for Windows +* `/PLAP` - install Pre-Logon Access-Provider * `/Documentation` - install the OpenVPN documentation * `/OpenSSL` - install OpelSSL utilities for generating public/private key pairs * `/SampleConfig` - install OpenVPN client/server configuration examples diff --git a/automatic/openvpn/tools/chocolateyInstall.ps1 b/automatic/openvpn/tools/chocolateyInstall.ps1 index 4a766c86a..4de685e60 100644 --- a/automatic/openvpn/tools/chocolateyInstall.ps1 +++ b/automatic/openvpn/tools/chocolateyInstall.ps1 @@ -45,6 +45,10 @@ if ($pp.count -gt 0) { Write-Verbose('The layer 3 TUN driver will be installed') $local += 'Drivers.Wintun' } + 'PLAP' { + Write-Verbose('Pre-Logon Access-Provider will be activated') + $local += 'OpenVPN.PLAP' + } 'Documentation' { Write-Verbose('OpenVPN documentation will be installed') $local += 'OpenVPN.Documentation'