Uninstall applications from CLI
Get the list of applications
wmic product get name
Uninstall the program
wmic product where name="" call uninstall
Where application name is the name of the program you wish to uninstall (use the exact name provided by the previously generated list)
wmic product where name="Adobe Reader 9" call uninstall