Daily Archives: March 1, 2019

Uninstall Windows Program Via Command Line

To get a list of installed programs: wmic product get name or for a filtered list wmic product where "name like '%DriveHQ%'" get name To uninstall: wmic product where name="DriveHQ....." call uninstall

Posted in Technical | Leave a comment