How much free memeroy do I have on my computer?

  • Thread starter Thread starter Dennis
  • Start date Start date
D

Dennis

Can anyone tell me how to check and see how much free
memeroy I have on my computer? I have Windows XP.Thank
You...Dennis
 
Open 'defragment' tool and you will see size and
percentage of all your drives.
 
Drive free space size is not memory. Harddrives and memory are two different
pieces of hardware.
 
Start, run, type in: msinfo32, hit enter. When it comes up in the right hand
pane you'll see available physical memory.
 
For a quick and easy way to check free physical memory, copy the following lines to Notepad and save to your Desktop as FreeMem.vbs. Double-click that file to get a popup report.

'FreeMem.vbs - Bill James
For Each o in GetObject("winmgmts:\\.\root\cimv2")._
ExecQuery("Select FreePhysicalMemory from Win32_OperatingSystem")
WScript.Echo "Free Physical Memory: " & o.FreePhysicalMemory
Next

--

Bill James
Microsoft MVP - Shell/User

Win9x VBScript Utilities » www.billsway.com/vbspage/
Windows Tweaks & Tips » www.billsway.com/notes_public/
 
ctrl-shft-esc, click on the Performance tab of Task Manager. It's listed in
the Physical Memory box near the bottom

Val
--
Bringing you BeadWizard Design Software
www.beadwizard.com
***************************
Practice safe eating -- always use condiments.
***************************

Can anyone tell me how to check and see how much free
memeroy I have on my computer? I have Windows XP.Thank
You...Dennis
 
Dennis said:
Can anyone tell me how to check and see how much free
memeroy I have on my computer? I have Windows XP.


You ought not to have *any 'free' memory*, because the system should
find something, however trivial, to do with any that would otherwise be
going spare. 'Free' is a misnomer. It is not true that the system
cannot make alternative use of memory that is 'in use', and 'free' would
better be called 'memory for which windows can currently find no
conceivable use'. Read up at www.aumha.org/win5/a/xpvm.htm
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top