Trying to uninstall silent an msi
Hello,
I have a program called Asta Powerproject I uninstall silently MsiExec.exe /I{90AD8C84-AD4F-4CCA-A614-9E6BC6FC1AF7} works fine but with prompts
When I try MsiExec.exe /I{90AD8C84-AD4F-4CCA-A614-9E6BC6FC1AF7} /qn nothing happens... I try the qn before MsiExec.exe /I /qn {90AD8C84-AD4F-4CCA-A614-9E6BC6FC1AF7} still no luck any ideas?
Thank you
Stephen Page Sr Support Analyst
Answers (1)
Top Answer
MSIEXEC uninstalls using x or X (depening on what you want, see man page)
So MsiExec.exe /X{90AD8C84-AD4F-4CCA-A614-9E6BC6FC1AF7} /qn
should do the trick. With /I you just ry to install the same software again.