Wmic

Description

The WMI command-line (WMIC) utility provides a command-line interface for Windows Management Instrumentation (WMI

Find all installed programs

cmd>wmic product get name

Uninstall an app

wmic product where name='myappsname' call uninstall

Source : microsoft

Date : 2020.10.13