在PowerShell中创建VPN连接

时间:2017-10-16 19:03:33

标签: windows powershell vpn l2tp

我正在使用以下PowerShell命令为本机Windows VPN客户端创建VPN连接

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<table>
  <tbody>
    <tr>
      <td>value 1</td>
      <td>2</td>
    </tr>
    <tr>
      <td>value 2</td>
      <td>3</td>
    </tr>
    <tr>
      <td>value 3</td>
      <td>2</td>
    </tr>
    <tr>
      <td>value 4</td>
      <td>1</td>
    </tr>
  </tbody>
</table>

它完美无缺!但是,我想要检查“自动使用我的Windows登录名和密码”(以及域,如果有的话)复选框(在MS-CHAP v2下)。如何将其添加到我的命令中?

1 个答案:

答案 0 :(得分:2)

我找到了自己,在MSChapv2之后加上-UseWinlogonCredential

够简单!!

实施例

Add-VpnConnection -Name "VPN" -ServerAddress "vpn.randomdoman.com" -TunnelType L2TP -L2tpPsk "SuperSecurePassword" -Force -AuthenticationMethod MSChapv2 -UseWinlogonCredential -SplitTunneling $True -EncryptionLevel "Optional"