Mexxi Posted February 16, 2010 Posted February 16, 2010 I'm looking for an x64 command line tool that can output an operating system's free RAM. So far I've been using pmon.exe for that job, but this is a 32bit one and I can't use it on a x64-only system. So does anyone know of an x64-replacement? Does anyone know where to find a whole bunch of native x64 command line tools for other purposes?
Tripredacus Posted February 16, 2010 Posted February 16, 2010 You can use Powershell for both environments. Here is an example I think that might be just what you are looking for:http://www.informit.com/guides/content.aspx?g=windowsserver&seqNum=235
Mexxi Posted February 16, 2010 Author Posted February 16, 2010 (edited) Thank you for your quick reply I never heard of PowerShell, but it sure looks useful and it might come in handy in my future endeavors. For this one, however, it doesn't work. It relies on Net Framework 2.0. I need a standalone tool which can run on a minimal Windows without the need for much overhead. PowerShell seems to be the exact opposite of having no overhead.So far, I used pmon.exe for getting some status reports on RAM-usage. It's a 10kb command line executable. Easy to use and very small with basically no requirements. Too bad that there is no x64-version of it. So I hope to find a similarly small and easy tool for x64 systems. Edited February 16, 2010 by Mexxi
DigeratiPrime Posted February 16, 2010 Posted February 16, 2010 Pick one:systeminfowmic os get FreePhysicalMemorywmic os get FreeVirtualMemorywmic os get TotalVirtualMemorySizewmic os get TotalVisibleMemorySize
Mexxi Posted February 16, 2010 Author Posted February 16, 2010 Thanks a lot for these suggestions! I never used WMIC for that, but this going to be my new way to invoke this information from command line now. However, this still doesn't work for what I have in mind. I guess I should have been more specific. I'm using a super slim command shell-only XP x64. There are no bells and whistles like WMIC left to use, so I need a standalone application that is absolutely independent from most Windows components.
CoffeeFiend Posted February 16, 2010 Posted February 16, 2010 I could quickly write something in VC++ but it would require the VC++ redist to be installed. Your call.
Mexxi Posted February 16, 2010 Author Posted February 16, 2010 I could quickly write something in VC++ but it would require the VC++ redist to be installed. Your call.Wow, that is a very nice offer! Thanks a lot, but thankfully I just found a little app called RamStatus which just works nicely, just as I had hoped. Thanks again for your offer and also for all the other suggestions you guys sent. They will be useful to me in the future
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now