除了 PowerShell,WMIC 是一个内置的命令行工具,用于报告 WMI 数据,包括各种系统信息,并以各种格式输出。它没有固定的系统硬件报告,但您可以使用它来获得所需的设置。
例如,要列出计算机上的驱动器,我可以发出以下命令:
C:\>wmic diskdrive get Manufacturer,Partitions,Size /value
Manufacturer=(Standard disk drives)
Partitions=2
Size=320070320640
...
或者,如果您想要大量有关特定项目的信息,您可以使用以下命令:
wmic cpu list /format:list
AddressWidth=64
Architecture=9
Availability=3
Caption=Intel64 Family 6 Model 26 Stepping 5
ConfigManagerErrorCode=
ConfigManagerUserConfig=
CpuStatus=1
CreationClassName=Win32_Processor
CurrentClockSpeed=2794
CurrentVoltage=
DataWidth=64
Description=Intel64 Family 6 Model 26 Stepping 5
DeviceID=CPU0
...
LoadPercentage=24
Manufacturer=GenuineIntel
MaxClockSpeed=2794
Name=Intel(R) Xeon(R) CPU W3530 @ 2.80GHz
这个站点展示了一些WMIC 或 PowerShell的优秀示例
Microsoft 有完整的在线文档,但它并没有真正让您了解如何使用它。