当 SSID 包含空格时如何使用 Netsh wlan?

当 SSID 包含空格时如何使用 Netsh wlan?

我不能使用网络管理员命令,当我尝试使用的网络包含空格时。例如:使用 SSID 为“一些网络”

C:\Users\Padmanava>netsh wlan show profile Some Network key=clear
There is no such wireless interface on the system.

但当使用 SSID 为“某网络“它运行良好

C:\Users\Padmanava>netsh wlan show profile Lenovo key=clear

Profile Lenovo on interface Wi-Fi 2:
=======================================================================

Applied: All User Profile

Profile information
-------------------
    Version                : 1
    Type                   : Wireless LAN
    Name                   : Lenovo
    Control options        :
        Connection mode    : Connect automatically
        Network broadcast  : Connect only if this network is broadcasting
        AutoSwitch         : Do not switch to other networks
        MAC Randomization  : Disabled

Connectivity settings
---------------------
    Number of SSIDs        : 1
    SSID name              : "Lenovo"
    Network type           : Infrastructure
    Radio type             : [ Any Radio Type ]
    Vendor extension          : Not present

Security settings
-----------------
    Authentication         : WPA2-Personal
    Cipher                 : CCMP
    Security key           : Present
    Key Content            : not_your_network

Cost settings
-------------
    Cost                   : Unrestricted
    Congested              : No
    Approaching Data Limit : No
    Over Data Limit        : No
    Roaming                : No
    Cost Source            : Default

有没有什么办法可以处理 SSID 包含空格的网络。

另外,我无法访问路由器,所以无法更改 SSID。

答案1

您应该对带有空格的 SSID 使用引号。

例如:如果您的 WiFi 名称为 WiFi Hotspot,则在命令中将其写为“WiFi Hotspot”。

答案2

使用 Netsh 时使用“*”代替空格

答案3

您可以尝试:

netsh wlan show profiles name="NAME OF NETWORK" key=clear

相关内容