Skip to main content

Uninstalling application Using the rigistry key value

Sometimes uninstalling program files can be real pain especially if the installed application cannot be found on the Add/Remove Programs located at the control panel. But you can uninstall application using windows registry key. Below are the steps on how to uninstall using windows registry:
  1. Start --> Run and type regedit, click ok , and then locate the following registry key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall
  2. Look for the name of the program to be uninstalled, Click on it and on the right side of the window double click on UninstallString and copy the value.
  3. Open the command prompt and paste the value there. Then hit enter. A warning message will be displayed asking you whether you want to uninstall the application. click ok.
  4. That's all.. :) Restarting your machine.


Be careful. Playing with the registry can crash your operating system!!!!!!

Comments

Anonymous said…
Hello!
I'm from Japan!
Geraldo Maia said…
Hello Asembereng
It is a great pleasure to visit your nice and interesting blog for the first time.
Best wishes from Brazil:
Geraldo

Popular posts from this blog

2011 Plans

Below are the list of things I plan to do within 2011, I am not saying I will achieve all but I will work towards achieving all.... Here you go: Pursuit of happiness. Revise Java and learn J2EE. Learn Haskell and Haskell for web Programming. Python Perl C Sharp C/C++ Software Project Management skill sets. Unix system administration. So help me God.. Guys I will appreciate it if you know any good books around that i can benefit from or those working on certain projects that involve the list above, i do not mind giving a helping hand.

Windows Remote Procedure Call (RPC) services

Remote procedure call ( RPC ) is an Inter-process communication technology that allows a computer program to cause a subroutine or procedure to execute in another address space (commonly on another computer on a shared network) without the programmer explicitly coding the details for this remote interaction. That is, the programmer would write essentially the same code whether the subroutine is local to the executing program, or remote. When the software in question is written using object-oriented principles, RPC may be referred to as remote invocation or remote method invocation . That is the definition from wikipedia . Microsoft windows OS have this as a service and so many of its services depends on this to run. But what happens when this service is disabled or value being changed? This is what happened to me, i stupidly changed the log on from default to another account and restarted the machine. When the machine started almost all the services couldn't start no...