如何使用命令行远程检查计算机上的 RAM 数量?(Windows XP 和/或 Windows Server 2003)
答案1
需要 XP 或更高版本的系统:wmic memphysical list full
,也wmic memorychip list full
可能为您提供一些您正在寻找的信息。
答案2
systeminfo /s:hostname
如果远程计算机上没有 WMI,则会为您提供一些基本的内存静态信息:
C:\>systeminfo /s:hostname
...
Total Physical Memory: 3,062 MB
Available Physical Memory: 2,116 MB
Virtual Memory: Max Size: 2,048 MB
Virtual Memory: Available: 1,996 MB
Virtual Memory: In Use: 52 MB
Page File Location(s): C:\pagefile.sys
答案3
要将其限制为总物理内存和可用内存,您可以使用:
systeminfo /s:hostname | findstr "Physical"
答案4
这是一个简单的示例:
以管理帐户身份运行命令行(如果在域中)
SYSTEMINFO /S computername
有各种信息,包括“总物理内存:”
如果需要指定用户:
SYSTEMINFO /S system /U user