Skip to main content

列出wifi密码

win10

  • cmd
# 列出之前所有链接过的wifi名称
netsh wlan show profile

# 将所有wifi详细信息导出到 C:\WLAN-xxxxx.xml
netsh wlan export profile folder=C:\ KEY=clear
<!-- WLAN-xxxxx.xml  -->
<?xml version="1.0"?>
<WLANProfile xmlns="http://www.microsoft.com/networking/WLAN/profile/v1">
<!-- wifi名称 -->
<name>666</name>

<SSIDConfig>
<SSID>
<hex>363636</hex>
<name>666</name>
</SSID>
</SSIDConfig>
<connectionType>ESS</connectionType>
<connectionMode>auto</connectionMode>
<MSM>
<security>
<authEncryption>
<authentication>WPA2PSK</authentication>
<encryption>AES</encryption>
<useOneX>false</useOneX>
</authEncryption>
<sharedKey>
<keyType>passPhrase</keyType>
<protected>false</protected>

<!-- wifi密码 -->
<keyMaterial>66666666</keyMaterial>

</sharedKey>
</security>
</MSM>
<MacRandomization xmlns="http://www.microsoft.com/networking/WLAN/profile/v3">
<enableRandomization>false</enableRandomization>
<randomizationSeed>3344118535</randomizationSeed>
</MacRandomization>
</WLANProfile>