windows:shell_commands:uninstall_apps_from_cli

Differences

This shows you the differences between two versions of the page.


windows:shell_commands:uninstall_apps_from_cli [2019/10/31 09:06] (current) – created - external edit 127.0.0.1
Line 1: Line 1:
 +====== Uninstall applications from CLI ====== 
 +Get the list of applications 
 +<code>wmic product get name</code> 
 +Uninstall the program 
 +<code>wmic product where name="" call uninstall</code> 
 +Where application name is the name of the program you wish to uninstall (use the exact name provided by the previously generated list) 
 +<code>wmic product where name="Adobe Reader 9" call uninstall</code>