I have UninstallString and I want to uninstall the program silently so that no user interaction involved. I have the UninstallString like the following :
- C:\Program Files\Notepad++\uninstall.exe
- C:\Program Files\7-Zip\Uninstall.exe
C:\xampp\uninstall.exe
and so on ...
I have opened these as a process But I don't know how to uninstall it silently.
I have heart some approach like find the windows and then send the OK keyStrokes but I don't know how to do it.
if it is a windows installer then we can use something like...
MsiExec.exe /I{GUID} /q
But how to do for above UninstallString which have .exe as the path.
Any help/Approaches will be highly appreciated.
Thanks a lot.