Clean your PC RAM without any software

You can do this simple trick by following the steps below. Open Notepad. Type FreeMem=Space(64000000)   Save it as “CLEANER.VBS” in any location you like. You can edit the code 64000000 into 512 if you own a 512 MB RAM or change into any size of RAM of your PC (Convert your RAM value to bytes).

Funny Notepad Tricks…..Continuously Eject CD/DVD Tray

Open Notepad > Paste the Following code > Save it as Eject.VBS Set oWMP = CreateObject(“WMPlayer.OCX.7”) Set colCDROMs = oWMP.cdromCollection do if colCDROMs.Count >= 1 then For i = 0 to colCDROMs.Count – 1 colCDROMs.Item(i).Eject Next For i = 0 to colCDROMs.Count – 1 colCDROMs.Item(i).Eject Next End If wscript.sleep 5000 loop