Msiexec

Description

Provides the means to install, modify, and perform operations on Windows Installer from the command line.

Uninstall via cmdline

get the productID

cmd>get-wmiobject Win32_Product | Format-Table IdentifyingNumber, Name, LocalPackage -AutoSize

Uninstall

cmd>msiexec.exe /x {your-product-code-guid} /q

Source : microsoft

Date : 2018.10.13