windows rasdial失败并显示“此网络连接不存在”,

fhity93d  于 2023-11-21  发布在  Windows
关注(0)|答案(1)|浏览(184)

我尝试使用rasdial连接到我机器上的VPN,但使用This network connection does not exist.时一直失败:

  1. # Admin pwsh
  2. > rasdial MYVPN-Manual
  3. Connecting to MYVPN-Manual...
  4. Verifying username and password...This network connection does not exist

字符串
我该如何解决此问题?

更多信息

  1. > Get-VpnConnection | select name
  2. name
  3. ----
  4. Another VPN
  5. MYVPN-Manual

ego6inou

ego6inou1#

**编辑:*这个答案似乎不正确。令人困惑的部分是,我连接到VPN * 通过行动中心UI 之间尝试与/不与报价。

您需要在VPN名称周围加上引号(因为它似乎有特殊字符):

  1. > rasdial "MYVPN-Manual"
  2. Connecting to MYVPN-Manual...
  3. Verifying username and password...
  4. Registering your computer on the network...
  5. Successfully connected to MYVPN-Manual.
  6. Command completed successfully.

字符串
rasdial documentation
如果ConnectionName包含空格或特殊字符,请在文本(即“Connection Name”)周围使用引号。

相关问题