Como posso exibir as outras conexões sem fio?
command
netsh wlan show profiles
through command prompt shows list of all the all Wi-Fi available at that time to which my computer can connect.
O comando acima mostra apenas as conexões que possuem perfis .
-
São conexões às quais você se conectou anteriormente e salvou configurações.
-
Ele sempre mostrará sua conexão atual (se você estiver usando sem fio).
-
Estas ligações podem não estar disponíveis a partir da sua localização atual.
Para listar todas as conexões disponíveis , é necessário usar um comando netsh
diferente:
netsh wlan show networks
- Essas conexões estão disponíveis no seu local atual.
Exemplo de saída (os nomes foram obscurecidos):
f:\test>netsh wlan show networks
Interface name : Wireless Network Connection
There are 22 networks currently visible.
SSID 1 : SKYXXXXX
Network type : Infrastructure
Authentication : WPA2-Personal
Encryption : CCMP
SSID 2 : SKYXXXXX
Network type : Infrastructure
Authentication : WPA2-Personal
Encryption : CCMP
SSID 3 : XXXXX
Network type : Infrastructure
Authentication : WPA2-Personal
Encryption : CCMP
SSID 4 : BTOpenzoneXXX
Network type : Infrastructure
Authentication : Open
Encryption : None
...
Comandos netsh para rede local sem fio (WLAN)
show networks
Displays a list of wireless networks that are visible on the computer.
Syntax
show networks [[interface=]InterfaceName] [[mode=]{ssid|bssid}]
...
show profiles
Displays a list of wireless profiles that are configured on the computer.
Syntax
show profiles [[name=]ProfileName] [[interface=]InterfaceName] [[key=clear]
Fonte - Comandos netsh para rede local sem fio (WLAN)
Leitura Adicional
- Um índice A-Z da linha de comando do Windows CMD - Uma excelente referência para todas as coisas relacionadas à linha do Windows cmd.
- netsh - Configurar interfaces de rede, firewall do Windows, roteamento & acesso remoto.
- Comandos netsh para rede local sem fio (WLAN)