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
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
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:
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.Use systeminfo:
Or if you need more detailed informations, you can find the tools needed in the SysInternals Suite, take a look at Psinfo.exe -d and Pslist for example. You can also roll your own VBScript querying WMI information.