# 查看磁盘分区/容量
Get-Volume
# 查看硬盘型号/接口等详细信息
Get-CimInstance -ClassName Win32_DiskDrive | Select-Object Caption, Size, Model, InterfaceType
# 查看总内存/可用内存
Get-CimInstance -ClassName Win32_ComputerSystem | Select-Object TotalPhysicalMemory, FreePhysicalMemory
# 查看内存条频率/插槽/型号
Get-CimInstance -ClassName Win32_PhysicalMemory | Select-Object DeviceLocator, Capacity, Speed, Manufacturer
# 查看显卡名称/显存
Get-CimInstance -ClassName Win32_VideoController | Select-Object Name, AdapterRAM
#查看 CPU 型号、核心、线程
Get-CimInstance Win32_Processor | Select-Object Name,NumberOfCores,NumberOfLogicalProcessors
#查看 CPU 主频、最大频率
Get-CimInstance Win32_Processor | Select-Object Name,CurrentClockSpeed,MaxClockSpeed
#系统信息
systeminfo