Using WMIC install and uninstall software remotely 1. Login CMD with domain admin account. Runas /user:DomainAdminAccount@DOMAIN cmd input password when it prompted. 2. Open a WMIC shell with appropriate permissions by running “WMIC” command. 3. Install MSI software remotely > /node:COMPUTERNAME product call install true,”" , “c:\Active Directory Janitor 2.0.msi” 4. Query installed software first and then uninstall selected software >/node:COMPUTERNAME product get name,version,vendor >/node:COMPUTERNAME product where name=”Active Directory Janitor 2.0″ call uninstall 5. Install and uninstall software remotel on multiple computers at one time >/node:@”c:\computers.txt” product where name=”Active Directory Janitor 2.0.msi” call uninstall > /node:@”c:\computers.txt” product call install true,”" , “c:\Active Directory Janitor 2.0.msi” |

