wmic cpu
Wmic is a set of tools used to get and set operating system related configuration and information. In this tutorial we will look how to get information about CPU.
Wmic是用于获取和设置与操作系统相关的配置和信息的一组工具。 在本教程中,我们将研究如何获取有关CPU的信息。
帮帮我 (Help)
Help about wmic cpu command can be listed like below.
可以如下列出有关wmic cpu命令的帮助。
$ wmic cpu /?
清单简介(List Brief)
Wmic supports different levels of information displaying. For little and more concentrate information we will use following command.
Wmic支持不同级别的信息显示。 为了获得越来越少的专心信息,我们将使用以下命令。
$ wmic cpu list brief
This command output will provide following information
此命令输出将提供以下信息
Caption
Caption
Socket Designation
Socket Designation
Device ID
Device ID
Manufacturer
Manufacturer
Max Clock Speed
Max Clock Speed
Name
Name
列出更多 (List More)
More information like Architecture, Family etc. can be listed with the CONFIG
option like below.
可以使用如下CONFIG
选项列出更多信息,例如Architecture,Family等。
$ wmic cpu list config
全部列出(List All)
All CPU related information can be listed with the following command.
可以使用以下命令列出所有与CPU相关的信息。
$ wmic cpu list config
Here following extra information is provided
在此提供以下额外信息
Revision
Revision
L2 Cache Size
L2 Cache Size
Cpu Status
Cpu Status
翻译自: https://www.poftut.com/how-to-get-cpu-information-with-wmic-command-in-windows/
wmic cpu