Jak zjistit heslo uložené WiFi ve Windows 7, 8, 10 a 11
Zapoměli jste heslo k WiFi, ke které jste přihlášeni, ukážeme jednoduchý způsob jak heslo zjistit.
PowerShell nebo příkazová řádka
pro pokročilé uživatele
Spusťte PowerShell jako správce a zadejte příkaz:
PS C:WINDOWSsystem32> netsh wlan show profiles
Tím se zobrazí všechny uložené sítě.
PS C:WINDOWSsystem32> netsh wlan show profiles Profiles on interface Wi-Fi: Group policy profiles (read only) --------------------------------- <None> User profiles ------------- All User Profile : InternetProfi All User Profile : HosteWifi All User Profile : CDWifi All User Profile : DomaciBezdratovaSit All User Profile : MojeWifi PS C:\WINDOWS\system32>
Zjistíme přesný název sítě u které chceme zjistit heslo (v tomto případě je název sítě InternetProfi)
Tento název použijeme v dalším příkazu
PS C:WINDOWSsystem32> netsh wlan show profile name="InternetProfi" key=clear
Tímto příkazem zobrazíme podrobné informace o WiFi síti včetně hesla.
PS C:WINDOWSsystem32> netsh wlan show profile name="InternetProfi" key=clear Profile InternetProfi on interface Wi-Fi: ======================================================================= Applied: All User Profile Profile information ------------------- Version : 1 Type : Wireless LAN Name : InternetProfi 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 : "InternetProfi" 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 : HesloKwifi123 Cost settings ------------- Cost : Unrestricted Congested : No Approaching Data Limit : No Over Data Limit : No Roaming : No Cost Source : Default PS C:\WINDOWS\system32>
V tomto případě je heslo k WiFi “InternetProfi” nastavené na “HesloKwifi123”.