Windows – System monitoring tool via command line in Windows

command-line-interfaceresourceswindows

Is there a command line tool for Windows XP to display system resources, like available memory usage, cpu, diskspace etc… Small and requires a non-install.

Best Regards,

Anders

Best Answer

WMIC can be used to find pretty much anything you want provided you are prepared to do a bit of digging - for information similar to the examples you asked about:

wmic computersystem get DNSHostname, Domain, Manufacturer, Model, NumberofLogicalProcessors, NumberofProcessors, SystemType, TotalPhysicalMemory
wmic logicaldisk get Caption, FileSystem, FreeSpace, Size, VolumeName

SystemInfo will give you a good overall summary but with WMIC you can tune the queries to give you just the data you are interested in.