本文介绍了使用C#或PowerShell来扫描所有可用的无线网络,并连接到特定的SSID的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图写扫描所有可用的无线网络并连接到一个特定的网络(SSID)的脚本。是否有人已经写了这个示例代码?我不能因为某些限制安装第三方软件(管理无线API)。

I am trying to write a script that scans all the available wireless networks and connects to a specific network (SSID). Does anyone have a sample code written already for this? I cannot install a third party software (managed wifi api) due to some restrictions.

推荐答案

您可以使用的netsh

netsh wlan connect ssid=YOURSSID name=PROFILENAME

这篇关于使用C#或PowerShell来扫描所有可用的无线网络,并连接到特定的SSID的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 05:20