我正在尝试通过NETSH连接wifi,为此,我首先手动创建一个配置文件,然后将其导入。完成此过程后,会自动创建另一个具有相同名称的wifi。这是不正确的。 我认为新配置文件导入是问题的原因,我的新配置文件正在以某种方式导入新的wifi。 ? 有人可以帮忙
这是我正在使用的文件格式。
<?xml version="1.0"?>
<WLANProfile xmlns="http://www.microsoft.com/networking/WLAN/profile/v1">
<name>Testing</name>
<SSIDConfig>
<SSID>
<hex>656D706E6574</hex>
<name>Testing</name>
</SSID>
</SSIDConfig>
<connectionType>ESS</connectionType>
<connectionMode>manual</connectionMode>
<MSM>
<security>
<authEncryption>
<authentication>WPA2PSK</authentication>
<encryption>AES</encryption>
<useOneX>false</useOneX>
</authEncryption>
<sharedKey>
<keyType>passPhrase</keyType>
<protected>false</protected>
<keyMaterial>12345678</keyMaterial>
</sharedKey>
</security>
</MSM>
</WLANProfile>