wmic uninstall program remotely
VERY useful command 🙂
First, get a list of programs installed on the remote computer
wmic /node:”computername” product get name
Next, uninstall, said unwanted program:
wmic /node:”computername” product where “name=’All Apple Products'” uninstall