Index
Portal Registration Ranking

How to Clean RAM with Notepad

Did you experienced slowness of your desktop computer or laptops? Are you tired of restarting your personal computer and pause for your work either you are surfing the net, typing a documents, doing your computer works etc? Here’s a useful tutorial on how to clean your RAM. RAM or Random-access memory (RAM) is a form of computer data storage or computer memory
“RAM (random-access memory): This is the same as main memory.
When used by itself, the term RAM refers to read and write memory; that is, you can both write data into RAM and read data from RAM. This is in contrast to ROM, which permits you only to read data. Most RAM is volatile, which means that it requires a steady flow of electricity to maintain its contents. As soon as the power is turned off, whatever data was in RAM is lost.” – from http://www.webopedia.com/TERM/M/memory.html
Try this:
1. Open notepad.
2. Type this FreeMem=Space(128000000)

3. Click File>Save As.> choose all files as file type and Rename it to *RAMcleaner.vbs (*any name as long as the file extension is .vbs )

Note: We observed that there’s an error on script when use equal to your RAM size, so change the code half of your RAM size
if your RAM is 1gb, use this:
FreeMem=Space(512000000)
Just copy the codes for your corresponding RAM sizes.
FOR 64 MB RAM
Code:
FreeMem=Space(32000000)
FOR 128 MB RAM
Code:
FreeMem=Space(64000000)
FOR 256 MB RAM
Code:
FreeMem=Space(128000000)
FOR 512 MB RAM
Code:
FreeMem=Space(256000000)
FOR 1024 MB RAM
Code:
FreeMem=Space(512000000)
FOR 2048 MB RAM
Code:
FreeMem=Space(1024000000)
FOR 4096 MB RAM
Code:
FreeMem=Space(2048000000)
FOR 8192 MB RAM
Code:
FreeMem=Space(4096000000)

Index
Portal Registration Ranking

Flag Counter

 
Back to TOP