Como ver a senha Wifi conectada no Windows 10

1

No windows 7, temos a opção de mostrar a senha. No windows 10 eu não sei como ver a senha. Eu configurei uma senha, mas não me lembro agora.

Obrigado.

    
por Kathir 16.09.2017 / 09:30

2 respostas

1

Como posso ver senhas sem fio?

Duas maneiras:

  1. Use Netsh .

  2. Use WirelessKeyView por Nirsoft .

Solução Netsh :

  1. Recupere uma lista de perfis sem fio:

    netsh wlan show profiles
    
  2. Recupere o perfil detalhado de um perfil sem fio específico:

    netsh wlan show profiles name=profile_name key=clear
    

Notas:

  • %código%. Quando especificado, isso significa que, se uma chave estiver presente no perfil e o usuário tiver privilégios administrativos no computador local, a chave de texto simples será exibida como parte do perfil.
  • No exemplo a seguir, o nome do perfil e a chave sem fio foram censurados.

Exemplo:

F:\test>netsh wlan show profiles

Profiles on interface Wireless Network Connection:

Group policy profiles (read only)
---------------------------------
    <None>

User profiles
-------------
    All User Profile     : censored


F:\test>netsh wlan show profiles name=censored key=clear

Profile censored on interface Wireless Network Connection:
=======================================================================

Applied: All User Profile

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

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

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

Solução WirelessKeyView

WirelessKeyView recovers all wireless network security keys/passwords (WEP/WPA) stored in your computer by the 'Wireless Zero Configuration' service of Windows XP or by the 'WLAN AutoConfig' service of Windows Vista, Windows 7, Windows 8, and Windows Server 2008.

It allows you to easily save all keys to text/html/xml file, or copy a single key to the clipboard. You can also export your wireless keys into a file and import these keys into another computer.

enter image description here

...

License

This utility is released as freeware.

Fonte WirelessKeyView v1.70 - Recupere a chave de rede sem fio perdida

Aviso de isenção

Eu não sou afiliado com Nirsoft de qualquer forma, eu sou apenas um usuário final do software.

Leitura Adicional

por 16.09.2017 / 13:30
0

Além da resposta acima.

Antoher duas opções:

Opção 1:

  1. Abra o PowerShell.

  2. Copie e cole o comando abaixo que você deseja usar no PowerShell e pressione Enter.

(saídas dentro do PowerShell) Código:

(netsh wlan show profiles) | Select-String ":(.+)$" | %{$name=$.Matches.Groups1.Value.Trim(); $} | %{(netsh wlan show profile name="$name" key=clear)} | Select-String "Key Content\W+:(.+)$" | %{$pass=$.Matches.Groups1.Value.Trim(); $} | %{[PSCustomObject]@{ PROFILE_NAME=$name;PASSWORD=$pass }} | Format-Table -Wrap

(saídas para arquivo de texto em sua área de trabalho) Código:

(netsh wlan show profiles) | Select-String ":(.+)$" | %{$name=$.Matches.Groups1.Value.Trim(); $} | %{(netsh wlan show profile name="$name" key=clear)} | Select-String "Key Content\W+:(.+)$" | %{$pass=$.Matches.Groups1.Value.Trim(); $} | %{[PSCustomObject]@{ PROFILE_NAME=$name;PASSWORD=$pass }} | Format-Table -Wrap | Out-File "$env:userprofile\Desktop\WirelessNetworkPasswords.txt"

Opção 2:

1 - Abra as Conexões de Rede na GUI

2 - Escolha o adaptador sem fio

3 - Escolha "Ver status desta conexão"

4 - Escolha "Propriedades sem fio"

Fonte

    
por 16.09.2017 / 17:07

Tags