WindowsXP – Clear System Memory

Version: 32.1
Revision: 43 Build 12

WindowsXP – Clear System Memory

Introduction:
running multiple applications (simultaneously) for long periods, it could lead to gradual decrease in system performance. However, for some, it’s only a click to reboot their system. But, closing an application from Task Manager, the tasks/threads associated with the application will not be release completely. Therefore, the system could become unstable and sluggish.

Method One: Creating a shortcut.
———————————–
1.] Right click on your desktop and select: New >> Shortcut
2.] In the ‘text box’, please enter this command: %windir%\system32\rundll32.exe advapi32.dll,ProcessIdleTasks

3.] Click Next and give your ‘shortcut’ a name. However, it needs to be simple and nothing fancy!
For example: “Clear Memory” (without the quotes).

4.] Click: Finish
5.] Done!

Notes: whenever you feel that your system is sluggish, you can double click on this shortcut and it will take care of your system – ‘idle tasks’. This can be used before you resort to reboot the system.

Method Two: Creating a VBScript.
———————————–
1.] Download Notepad++ from the original author.
———————————–

http://sourceforge.net/projects/notepad-plus/

http://filehippo.com/download_notepad/

———————————–

2.] Copy this script and save it as a “.vbs” extension.

—Copy Source Code—

'----------------------------------
'Author: Lair360.
'Version: 16 Build 45 [Final]
'This script was designed to clear system memory.
'Url: http://lair360.co.uk
'----------------------------------
On Error Resume Next 'This line will concel the error and direct to the info.
Dim objShell 'This will maintain memory usage when "WS.script.Shell" is activated.
Set objShell = CreateObject("WScript.Shell")
ObjShell.Run ("%windir%\system32\rundll32.exe advapi32.dll,ProcessIdleTasks")
'Results are given and the cmd command-line has exit.
WScript.Quit
'End of VBScript command

—End Source Code—
Copyright 2001-2009 Lair360


3.] Execute this VBScript and clear your system memory!

Method Three: Creating a BatchScript.
———————————–

1.] Download Notepad++ from the original author.
———————————–

http://sourceforge.net/projects/notepad-plus/

http://filehippo.com/download_notepad/

———————————–

2.] Copy this script and save it as a “.bat” extension.

—Copy Source Code—

@echo off
echo.
Call %windir%\system32\rundll32.exe advapi32.dll,ProcessIdleTasks
echo. System Memory Cleared...
cls
exit

—End Source Code—
Copyright 2001-2009 Lair360


3.] Execute the script and clear your system memory!

Copyrighted By Lair360

Comments are closed.