开发者

Avoid confirmation box in MsiExec uninstall

开发者 https://www.devze.com 2023-03-13 14:46 出处:网络
I need to run the msiexec uninstall from my code: MsiExec.exe /I{A52EEC0E-D0B7-4345-A0FF-574804C7B78A}

I need to run the msiexec uninstall from my code:

MsiExec.exe /I{A52EEC0E-D0B7-4345-A0FF-574804C7B78A}

But开发者_Python百科 this is asking for a confirmation (Yes/No). How can I avoid that?


msiexec /quiet will avoid the userinteraction


You can use the /passive switch to do this.

MsiExec.exe /I{A52EEC0E-D0B7-4345-A0FF-574804C7B78A} /passive

If you want to completely hide the UI, use the /quiet switch instead of /passive.


Try adding the /qn flags to your command line. /q is quiet mode and n is a flag for /q that suppresses all user interface.

With these flags added, the complete command would be:

MsiExec.exe /qn /I{A52EEC0E-D0B7-4345-A0FF-574804C7B78A}
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号