web-dev-qa-db-ja.com

SSIDに空白が含まれている場合にNetshWLANを使用するにはどうすればよいですか?

使用しようとしているネットワークに空白が含まれている場合、netsh WLANコマンドを使用できません。例:SSIDが「一部のネットワーク」のネットワークで作業している場合

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

ただし、SSIDが「SomeNetwork」のネットワークで作業する場合は完全に正常に機能します

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
dilip ghosh

スペースのあるSSIDには引用符を使用する必要があります。

例:WiFiの名前がWiFiホットスポットの場合、コマンドに「WiFiホットスポット」と記述します。

0
Sankalp Kotewar