当前位置: 代码迷 >> 综合 >> powershell 获取System information里总得物理内存
  详细解决方案

powershell 获取System information里总得物理内存

热度:38   发布时间:2023-11-18 14:13:34.0

一 .获取System information里总的物理内存

$memory=(Get-WmiObject -Class Win32_ComputerSystem).TotalPhysicalMemory /1gb
"总的物理内存 = $([Math]::Round($memory,2)) GB"

  相关解决方案