From c8463092c7a0891a29567b777feadda6ac967f3e Mon Sep 17 00:00:00 2001 From: hwdsl2 Date: Fri, 10 Feb 2023 21:50:26 -0600 Subject: [PATCH] Update docs - Fix PowerShell line continuation Ref: #1321 --- docs/clients-zh.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/clients-zh.md b/docs/clients-zh.md index b604357..1eca95a 100644 --- a/docs/clients-zh.md +++ b/docs/clients-zh.md @@ -69,8 +69,8 @@ # 不保存命令行历史记录 Set-PSReadlineOption –HistorySaveStyle SaveNothing # 创建 VPN 连接 -Add-VpnConnection -Name 'My IPsec VPN' -ServerAddress '你的 VPN 服务器 IP' ^ - -L2tpPsk '你的 VPN IPsec PSK' -TunnelType L2tp -EncryptionLevel Required ^ +Add-VpnConnection -Name 'My IPsec VPN' -ServerAddress '你的 VPN 服务器 IP' ` + -L2tpPsk '你的 VPN IPsec PSK' -TunnelType L2tp -EncryptionLevel Required ` -AuthenticationMethod Chap,MSChapv2 -Force -RememberCredential -PassThru # 忽略 data encryption 警告(数据在 IPsec 隧道中已被加密) ```