• 如何查看电脑连接的wifi的密码


    问题

    很多时候我们电脑连上wifi之后就把密码忘记了,这个时候如果同事问自己密码是多少,如果作为程序员说不知道是不是感觉有点不好意思,哈哈……

    解决

    我使用的是windows电脑,就以windows为例说明下自己是如何查看的。

    1. 打开windows命令行。按下windows + r快捷键,然后输入cmd回车就打开了
    2. 命令行输入netsh wlan show profiles 可以看到电脑已经配置了wifi。效果如下
    C:\Users\username>netsh wlan show profiles
    
    Profiles on interface WLAN:
    
    Group policy profiles (read only)
    ---------------------------------
        <None>
    
    User profiles
    -------------
        All User Profile     : test-5G
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    1. 然后输入netsh wlan show profiles name="profileName" key=clear就可以看到密码了。效果如下。Security settings中的Key Content后面的内容就是密码
    C:\Users\username>netsh wlan show profiles name="test-5G" key=clear
    
    Profile gc on interface WLAN:
    =======================================================================
    
    Applied: All User Profile
    
    Profile information
    -------------------
        Version                : 1
        Type                   : Wireless LAN
        Name                   : gc
        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              : "test-5G"
        Network type           : Infrastructure
        Radio type             : [ Any Radio Type ]
        Vendor extension          : Not present
    
    Security settings
    -----------------
        Authentication         : WPA2-Personal
        Cipher                 : CCMP
        Authentication         : WPA2-Personal
        Cipher                 : GCMP
        Security key           : Present
        Key Content            : aa123456
    
    Cost settings
    -------------
        Cost                   : Unrestricted
        Congested              : No
        Approaching Data Limit : No
        Over Data Limit        : No
        Roaming                : No
        Cost Source            : Default
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
  • 相关阅读:
    cesium 热力图(CesiumHeatmap)
    Spring
    数据结构之队列
    【计网】第三章 数据链路层(2)流量控制与可靠传输、停止等待协议、后退N帧协议(GBN)、选择重传协议(SR)
    QTcpSocket发送结构体的做法
    k8s~envoy上添加wasm插件
    【Pytorch】网络中间特征图可视化—详细记录-函数可直接调用
    月薪2w的前端工程师,必盘的实战项目
    python string related
    SpringCloud_第1章_入门到精通()
  • 原文地址:https://blog.csdn.net/guanking19/article/details/136100910