I'm trying to write a batch (uninstall.bat) to uninstall a program from a few computers automatically. But I'm not seeing how to get the command line to automatically do this. I know I need to have the below, but how do I get the batch file to execute certain commands? This is what I have:
start cmd.exe
wmic
product where name=”filekeep” call uninstall /nointeractive
So what commands will I use to get the command line to run each script?
Thanks for all the help!
Abdul