我无法使用命令提示符连接到Wi-Fi。我想根据我的要求使用命令提示符连接到Wi-Fi。我不能为此目的使用GUI控件或任何其他第三方工具
这是我正在做的事情:
netsh wlan add profile filename =“PATH_TO_FILE.XML”interface =“Wi-Fi”
Wi-Fi配置文件如下所示:
<?xml version="1.0"?>
<WLANProfile xmlns="http://www.microsoft.com/networking/WLAN/profile/v1">
<name>WiFi-ProfileName</name>
<SSIDConfig>
<SSID>
<hex>12346692D57617477617331</hex>
<name>WiFi-SSID</name>
</SSID>
<nonBroadcast>true</nonBroadcast>
</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>true</protected>
<keyMaterial>KEY_IS_REMOVED_TO_SHOW_THE_FILE_OF_THE_CONTENT_HERE</keyMaterial>
</sharedKey>
</security>
</MSM>
</WLANProfile>
netsh wlan connect ssid =“WiFi-SSID”name =“WiFi-ProfileName”interface =“Wi-Fi”
运行此命令后,命令提示符显示一条消息,表明Connection请求已成功完成,但机器根本没有连接Wi-Fi。
我是否遗漏了一些设置以设置任何类型的权限或其他内容?