如何使用 CMD 连接到 ad hoc 网络?

如何使用 CMD 连接到 ad hoc 网络?

我正在尝试将我的计算机 (PC1) 连接到现有的特别指定使用 cmd 命令。此临时命令由第二台计算机(PC2)创建,我花了几个小时才找到结果,但我确实找到了答案。看这张照片来了解我。

我尝试了以下命令:

Netsh wlan export profile  folder=”c:\profiles” name="Profile 1" interface="Wireless Network Connection"


Netsh wlan add profile filename=C:\Users\WirelessUser\Documents\profile1.xml interface="Wireless Network Connection"

但我无法满足我的需要。

我需要一些步骤来为 ad hoc 创建配置文件(该 ad hoc 是由其他机器创建的),或者我应该使用 cmd 等其他方法?

答案1

1-创建一个 XML 文件并复制/粘贴以下行:

<?xml version="1.0"?>
<WLANProfile xmlns="http://www.microsoft.com/networking/WLAN/profile/v1">
<name>{SSID}</name>
<SSIDConfig>
    <SSID>
        <name>{SSID}</name>
    </SSID>
</SSIDConfig>
<connectionType>ESS</connectionType>
<connectionMode>auto</connectionMode>
<MSM>
    <security>
        <authEncryption>
            <authentication>WPA2PSK</authentication>
            <encryption>AES</encryption>
            <useOneX>false</useOneX>
        </authEncryption>
        <sharedKey>
            <keyType>passPhrase</keyType>
            <protected>false</protected>
            <keyMaterial>{password}</keyMaterial>
        </sharedKey>
    </security>
</MSM>
<MacRandomization 
xmlns="http://www.microsoft.com/networking/WLAN/profile/v3">
    <enableRandomization>false</enableRandomization>
</MacRandomization>
</WLANProfile>

2- 将关键字 {SSID}(出现两次)和 {password} 替换为所需值

3-在cmd中调用该文件(首先导航到其位置):

netsh wlan 添加配置文件名="file_name.xml"

4-然后执行此命令:

netsh wlan 连接名称=“SSID”

注意:XML 文件中使用相同的 SSID!

然后轰的一声,连接上了!

笔记:

1-注意拼写SSID(大写和小写字母)

2- SSID =“热点名称”

相关内容