LoginSignup
5
9

More than 3 years have passed since last update.

wmicコマンドでシステムの情報を取得する

Last updated at Posted at 2019-11-19

システム情報の取得

プロセスやメモリ使用率などをコマンドを使って取得する。

プロセス情報

使用中のプロセス情報を取得するコマンド。

wmic process get name,workingsetsize

ディスク情報の取得

ドライブ名、ファイルシステム、サイズなどが取得できる。

wmic logicaldisk get Caption,Description,FileSystem,Size

端末情報の取得

端末の型番やシリアルナンバーをコマンドを使って取得する。

端末型番の取得

wmic csproduct get name

シリアルナンバーの取得

wmic csproduct get identifyingnumber

備考

一部の端末では、Microsoft Windows Management Instrumentation (WMI)に対応していないなどの理由で情報を取得できない場合もあるみたい?

セキュリティパッチ等の情報の取得

適用されているWindows Updateやセキュリティパッチの情報が取得できる。

wmic qfe
5
9
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
5
9