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
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