使用Windows PowerShell查看系统信硬件信息-1
2010-09-27 12:34:19 来源:WEB开发网当你看到内存容量是268435456时候,是不是有点头痛呢?让我们再来简单编写一个脚本,计算计算机上的内存容量。代码如下:
PS C:> Get-WmiObject -Class Win32_PhysicalMemory | %{$sum = 0} { $sum += $_.Capacity } {Write-Host ($sum / 1MB) "MB"}
1024 MB
原来计算机上有1GB的内存啊,真的是很方便。
3. 查看计算机处理器信息
很多时候,我们很好奇计算机上的处理器信息,例如:CPU的速度、时钟频率、缓存大小、CPU型号、CPU数量等。我们只要使用下面的命令就能了解计算机上的CPU信息啦:
PS C:> Get-WmiObject -Class Win32_Processor
AddressWidth : 32
Architecture : 0
Caption : x86 Family 6 Model 10 Stepping 0
CpuStatus : 1
CreationClassName : Win32_Processor
CurrentClockSpeed : 1840
CurrentVoltage : 33
DataWidth : 32
Description : x86 Family 6 Model 10 Stepping 0
DeviceID : CPU0
ExtClock : 166
Family : 29
L2CacheSize : 512
L2CacheSpeed : 613
Level : 6
LoadPercentage : 42
Manufacturer : AuthenticAMD
MaxClockSpeed : 1840
Name : AMD Athlon(tm) XP 2500+
PowerManagementSupported : False
ProcessorType : 3
Revision : 2560
Role : CPU
SocketDesignation : Socket A
这里我做了一些删减,如果有多个CPU,那么每个CPU的这些信息都会被输出,确定CPU的数量也很容易,用下面的命令就能实现:
Tags:使用 Windows PowerShell
编辑录入:爽爽 [复制链接] [打 印]更多精彩
赞助商链接