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?