Uninstall Silent Package
Hi,
I am trying to deploy a uninstall package silently for Sketchup so it does not have to be interactive. I currently have this command but cannot seem to get it to deploy successfully. Any suggestions on what I could do differently to get this working properly?
MsiExec.exe / quiet / uninstall / X{xxxxxxx-xxxxxx-xxxxx-AC5D-85127CF67051}
0
Comments
Typically, uninstalls look like this: MsiExec.exe /qn /norestart /X{xxxxxxx-xxxxxx-xxxxx-AC5D-85127CF67051}
Wouldn't the parameter depend on the software? It is listed as quiet for sketchup.
MsiExec.exe is a Windows installer application that is called on to install or uninstall .msi package. If you just run it from a command line, it lists out all the command line switches. /qn is quiet, no UI.