How to determine amount of RAM on a remote computer

Soldato
Joined
7 Mar 2005
Posts
19,598
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.
 
There are some performance counters in PerfMon which will let you see available memory, committed, etc. on networked machines.

Its not the perfect solution, but might help. Failing that, you might be able to flash a quick WMI program together? <edit>beaten</edit>
 
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:
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
 
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
 
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. :)

For future info all you need to do is write the vbscript that uses wmi in notepad an save as .vbs. Double click to run it.
 
Back
Top Bottom