Thinking How Not To Think…

Unknowingly… I couldn’t think of better start. Thinking is a mystery process. It can create beautiful things. When done wrong way it can create things like what you see in this blog. The Nonsense. We start thinking of  something. The process of thinking starts and it finishes when you reach to a conclusion which you think is it’s end. This simple process is very complex but we do it unknowingly.

Have you noticed Windows, the OS you always curse. It’s got a progress bar when it’s loading. It is processing in background and in the end it renders a beautiful interface with which you can interact with computer. As a Windows user you must have gone through a phase when it gets stuck at the loading phase. The progress bar keeps scrolling horizontally bringing all the bad words you ever know for Bill gates. Irritation. Similar happens when you think.

stop thinkingSource

The progress bar gets stuck and in return you are stuck. You get confused. You are body less person. You are only head now which like surrounded by five brothers of your girlfriend punching you. Nothing else feels other than your head. The best part is, you have to think on how to stop thinking. Some more punches. Your head is size of pumpkin about to burst. What to do then?

Just find the body and rest the head on it. The pain will get transferred to the body and you’ll get relief. The progress bar moves ahead ready to render fresh thoughts.

I am going through the same phase and it’s my personal experience. Just use extra weights in your gym and see this thing working. I got a relief from all the thoughts fired at me from all direction. Not just quiet ready to think what I love to think.

But that should not stop you from thinking.
Till I get ready…
Think Nonsense…

RunDll32

rundll32.exe is a process which executes DLL’s and places their libraries into the memory, so they can be used more efficiently by applications. This program is important for the stable and secure running of your computer and should not be terminated. Nowadays many virus, Trojans, worms use this to affect the computers. But if you study this process it can be very useful. So I’m starting some tips and tricks on this in coming blog posts.

The syntax for using Rundll32.exe is as follows:

RUNDLL32.EXE <dllname>,<entrypoint> <optional arguments>

The DLL name should not contain any spaces, commas or quotation marks. If the DLL name does contain spaces, use the short (8.3) version of the file name. This is the name which you’ll see if you use that file in DOS environment. Note the comma between the DLL name and the entry point. Also, the name of the entry point function is case-sensitive and there should not be any spaces between the DLL name, the comma, and the entry point function name. Full path of DLL should be given unless it exists in system folders.
There are a number of commands employing Rundll32.exe that can be entered into Start -> Run, a command window, or used in scripts. A common use is to open various Control Panel applets. (Another method specific to Control Panel is discussed here.) For example, to open the Control Panel applet for configuring the display settings enter

rundll32.exe shell32.dll,Control_RunDLL desk.cpl,,3

Different tabs for the Desktop applet can be opened by changing the number at the end that is part of the argument. All of the Control Panel applets and their tabs can be opened this way by using the relevant CPL file and the appropriate tab number as arguments. The operating system also uses this method to display Control Panel. In fact, Control Panel applications are the most commonly mentioned examples in discussions of using Rundll32.exe.

To be Continued…