Muhammad Irfan

"The purpose of life is a life of purpose." Robert Byrne


Leave a comment

Uninstall Programs using Windows Command Prompt

  1. Click Start Menu.
  2. 008

  3. Click on Run
  4. Type CMD and press Enter
  5. 000

  6. When the command prompt is open, type wmic and press Enter.
  7. 001

  8. Now type command: product get name and hit Enter.
  9. 002
    This command will populate a list of installed applications on your PC with complete name of an application.
    003

  10. Now type: product where name=“ ” call uninstall and hit Enter
  11. (Note: Inside inverted comas “ ” you have to write the exact name of software you wish to uninstall from the populated list.

    For an example: Adobe Reader 7.0).
    Example: product where name=“Adobe Reader 7.0” call uninstall

  12. Type Y for confirming un-installation process then press Enter to uninstall the software completely.

(Note: To Not be prompted Y/N to approve use following command)

product where name=“Program Name” call uninstall /nointeractive
004
After successful un-installation you will see success message as given in following image
005
This trick works on Windows XP Professional, Windows Vista, Windows 7, Windows Server 2003 and Windows Server 2008. We can use WMIC command not in distress only, but also in our normal days to flaunt our skills in   computer troubleshooting.