Se você não quiser executar um software desconhecido em um servidor, use um script simples do VBS:
function getPhysicalMemory()
dim memorystr
set objWMI = GetObject("winmgmts:")
set memorySet = objWMI.ExecQuery("select * from Win32_PhysicalMemory")
memorystr=""
for each memory in memorySet
if memorystr<>"" then
memorystr=memorystr&"+"
end if
memorystr=memorystr & Round(memory.Capacity/1024/1024/1024,1)
next
getPhysicalMemory = memorystr
end function
MsgBox(getPhysicalMemory)
Mostraria todos os módulos de memória e seus tamanhos, por exemplo, "2 + 2" - 4GB de RAM em 2 módulos.