Thursday, September 15, 2011

Increase your RAM performance with a single code

One of the biggest factor in PC speed performance is RAM short for Random Access Memory. It is also known as physical memory. Another type of memory used is virtual memory. But physical memory or RAM speed is much greater then the virtual memory, so as you increase your RAM your PC speed will also increase.

When you run a large application such as games or other large applications together you see the sluggish performance of your PC. It is because the leftovers take the physical memory. It means a portion of your physical memory trapped with unused application or programs. So in order to speed up your PC you need to free this memory. 

The following code is very good with this application. First open your notepad and write the following single line code: (you can open notepad from run command just type notepad and press enter)

RAM Related Performance Trick
    If you have under 128mb of RAM then write:
    Mystring = (16000000) 
    for RAM 128mb or More write:
    Mystring = (80000000) 







Save this notepad as "Memory.vbe" or "RAM.vbe ", on the desktop don't forget to include the quote("") signs.
Save this notepad at Desktop

Now double click on this newly created notepad and it will started working. But what this code is and what it does. This script simply finds out the unused physical memory forces this unused memory to be paged to the swapfile or pagefile, thus that memory will be free for using by the rest of the system. It actually work. But not recommended if you are not facing any problem regarding RAM.

0 comments:

Post a Comment