1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Windowsでパソコンのシリアル番号の確認方法

Last updated at Posted at 2025-06-04

何台もシリアル確認めんどい

という場合、機種によりますが以下で確認可能なことが多いです。

Windowsキー+R → cmdと入力してエンター → wmic bios get SerialNumber

ただ、もうwmicが無効にされつつあるので、、、

Windowsキー+R → powershellと入力してエンター → Get-WmiObject Win32_BIOS | select SerialNumber

多分こっちはまだ大丈夫なはず。
これでシリアル出てこない場合は、諦めてパソコンひっくり返したり、電池外したりしましょう。

#★6/7 0:20 追記★
 コメントにワンライナーやメーカー製の案をいただけましたので是非参考にしてみてください。

#ダメな例

C:\Users\usr>wmic bios get SerialNumber
SerialNumber
Default string
1
0
5

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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?