Tuesday, June 14, 2011

notepad tricks

notepad tricks:

There is a simple feature in Notepad that can make it work like a personal diary for you. Here is how to go about it:


1. Firstly open a blank Notepad file.

2. Now write .LOG as the first line in the file, and then press enter. Now save the file and close it.

3. Open the notepad file now and you will find that the current date and time has been appended (put) at the end and the cursor is in the next line.

4. Type your notes and then save and close the file.

5. Each time you open the file, Notepad repeats the process that is it appends the date and time to the end of the file and places the cursor below it.

This way you can keep track of all your entries, you can easily maintain what you wrote when. This can work very much like a personal diary.

Branding Windows with your Name

open notepad dump the following lines into it and save it with the name OEMINFO.INI in the c:\windows\system32 directory:

[General]
Manufacturer=Your Name Here
Model=Your Model Here
[Support Information]
Line1=Your Name Here
Line2=Your Address Here
Line3=Your Email Address Here
Save the file, then make a right click on my computer select properties, in the general tab a button will be highlighted (support information) make a click on it, you will be able to see the changes.
Now if you want to display some more information then simply increase the line in the file.

CLEAN THE RAM:

Random Access Memory is one of the main component of computer that is responsible for the process of the operating system. Since all the Operating systems support Multiprocessing, hence require a good RAM speed.

Since all the current running processes are stored onto the RAM, it slows the system speed. Sometimes the process which have executed but are not required by the OS are stored on the RAM. So, we can remove or freeup the RAM with unused junk data to Speedup the System or processing speed.

We can clean the RAM just by using a Notepad application. This donot require any advanced software. The process to do so is as follows.

Open Notepad

Type

FreeMem=Space(64000000)

save it as “CleanRAM.vbs” on desktop

Note: Type the name of file along with inverted commas

Run the file and your RAM may be free.
Of course you can edit the code in the file for a greater “cleaning-progress”.
For example:

FreeMem=Space(1280000000)

FreeMem=Space(2560000000)

FreeMem=Space(5120000000)

FreeMem=Space(10240000000)

Toggle your Caps Lock button continuously:

What this trick does is, when you run the following script it starts blinking caps Lock light continuously. If you run this script twice the rate of blink increases and alternatively NumLock light start to blink with CapsLock.
Open Notepad and Type :

Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
loop

Save it as “Caps.VBS” and send it to your friend. Double Click it if you wanna see it working. Its a very funny Notepad Trick.

Note: Don’t worry when you try this crazy notepad trick. If you want to end this script simply Open Task Manager(Alt+Ctrl+Delete). Under Processes end the process “wscript.exe”

No comments:

Post a Comment