Hi @OSVBNET ,
You can use the following method.
msiexec /Uninstall {GUID} /NoRestart /Quiet
If you want to stil use a passive method and it asks verification, I think there is something wrong with this installation package.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hello,
I need to uninstall an almost large number of MSI packages via a batch file:
msiexec /Uninstall {GUID} /NoRestart
Many of them will ask for confirmation or messages like this: If you continue with this uninstall, 1 or more products may stop working properly. Do you wanna go on anyway...
I need to use the above command with /passive switch:
msiexec /Uninstall {GUID} /NoRestart /Passive
But /Passive will just suppress the question message box with the default button, which is of course NO! How to force it work in passive mode with YES to uninstall anyway?