1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

WindowsコマンドからWi-Fiパスワードを確認する方法

Last updated at Posted at 2021-10-22

はじめに

ちょっとしたときにWi-Fiのパスワードを確認するときに便利なコマンドを備忘録も兼ねて紹介します。

実行コマンド

コマンドプロンプトを開きます.
登録されているWi-Fiネットワーク名を確認します。

netsh wlan show profile
ユーザー プロファイル
---------------------
    すべてのユーザー プロファイル     : testxxxxxxxxx
    すべてのユーザー プロファイル     : xxxxxxxxxxxxx
    すべてのユーザー プロファイル     : xxxxxxxxxxxxx
    ...
    ..
省略コマンド
netsh wl sh p

上記のコマンドから確認したいパスワードのWi-Fiネットワーク名を確認し、次のコマンドのnameに入力します。

netsh wlan show profile name="testxxxxxxxxx" key=clear

...
..
セキュリティの設定
-----------------
    認証                : WPA2-パーソナル
    暗号                : CCMP
    認証                : WPA2-パーソナル
    暗号                : GCMP
    セキュリティ キー      : あり
    主要なコンテンツ       : xxxxxxxxxxxxxx(パスワード)
...
..
省略コマンド
netsh wl sh p n="testxxxxxxxxx" k=clear

セキュリティの設定の「主要なコンテンツ」にパスワードが表示されます。

1
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?