本文介绍了通过 Powershell 连接到 VPN的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我希望我的 Windows 在加载后立即连接到 VPN 服务器.如何使用 Powershell 执行此操作?
I'd like my Windows to connect to the VPN server as soon as it loads. How can I do it using Powershell?
推荐答案
试试这个适用于 Windows 10
Try this works with windows 10
$vpnName = "YOUR_VPN_NAME";
$vpn = Get-VpnConnection -Name $vpnName;
if($vpn.ConnectionStatus -eq "Disconnected"){
rasdial $vpnName;
}
这篇关于通过 Powershell 连接到 VPN的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!