【发布时间】:2022-01-22 15:22:15
【问题描述】:
Windows 11 构建,使用脉冲安全 v9.1.8 连接到rise网络,将连接然后重新建立连接,直到它断开连接
解决方案:
进入您的网络设置和高级设置,直到您进入原始网络连接视图,等待脉冲安全显示为瞻博网络虚拟适配器,然后进入该连接的属性并启用“瞻博网络服务" 这可以让我的连接稳定
我有问题和解决方案,有没有办法自动化手动过程
【问题讨论】:
-
cloudbrothers.info/en/pulse-secure-windows-11 通过使用以下代码,我能够自动化该过程
do { if ( (Get-NetAdapterBinding -InterfaceDescription "Juniper Networks Virtual Adapter" -ComponentID jnprns -ErrorAction SilentlyContinue).Enabled -eq $false ) { Enable-NetAdapterBinding -ComponentID jnprns -InterfaceDescription "Juniper Networks Virtual Adapter" "Enabled" } } while (1)
标签: windows pulsesecure