How to remotely Get a List then Uninstall a Program via WMIC ( CMD )

Get a list of programs currently install 

wmic /node:<REMOTE HOSTNAME> product get name, version, vendor

How to uninstall the Program

wmic /NODE:<REMOTE HOSTNAME> product where (name=”Windows Agent”) call uninstall
 

(No Ratings Yet)