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
 

1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading...