How to determine amount of RAM on a remote computer

Soldato
Joined
7 Mar 2005
Posts
19,612
Location
LU7
Doing some volunteering at a local school I worked at before departing for Uni. Working with the IT techs. The head IT tech wanted to know how to find out how much RAM was on a remote computer on the school network without physically going to that PC.

I googled and found a prog but I don't think he liked the look of it. Anyone know of any programs that will do this or perhaps a batch script?

Ta muchly.
 
Clever Messers Moredhel and mk17. :D I found some WMI stuff on MSDN. Considering I don't really program and I don't think the school has Visual Studio how could I put this together? :)

Edit: Have found PsInfo from Sysinternals. Looks like it does what I need. :)
 
Last edited:
goto the view menu and select remote computer. :)
Might try that. :) Got PsInfo working apart from the ones turned off. :D

Simply install Linux on all the machines and setup ssh public keys, then you can just do :
Code:
( for machine in machine{0,1,2,3,etc} ; do
echo $machine has $(ssh $machine grep MemTotal /proc/meminfo) ;
done ) > machine-memory-sizes.txt
...and have a lovely text file with all the machine names and corresponding memory sizes.

Sorry :p
Pfft! :p
 
Back
Top Bottom