How to uninstall program using CMD

Andrew Perfiliev
2 min readSep 8, 2019

--

1. You need to open CMD. Win button ->type CMD->enter

2. type in wmic

3. Type in product get name and press Enter.

This will show all of the programs that are installed on your computer and also will allow using program name in the next step. Sometimes it might differ from Programs and Features​ installed programs.

4. Example of the command listed under this.

(To be prompted Y/N to approve. Recommended)

product where name=”name of program” call uninstall (To NOT be prompted Y/N to approve.)

product where name=”name of program” call uninstall /nointeractive

5. After this, you should see successful uninstallation of the program

--

--