Here’s how IT can uninstall the Marketo Outlook Plugin remotely.
Run the following command line as the as as ‘System’ or an Administrative user account with the /x switch to uninstall.
<pre>msiexec.exe /x [File Name] /qn </pre>
Example
<pre>msiexec.exe /x MarketoAddInSetup64.msi /qn </pre>
For troubleshooting you can enable logging to create an output log file.
<pre>msiexec.exe /x [File Name] /qn /L*v MarketoAddinUninstall.log</pre>
Example
<pre>msiexec.exe /x MarketoAddInSetup64.msi /qn /L*v MarketoAddinUninstall.log</pre>
To specify a location of the log files, you can specify the file path in the command line.
<pre>msiexec.exe /x [File Name] /qn /L*v [File Path]MarketoAddinUninstall.log</pre>
Example
<pre>msiexec.exe /x MarketoAddInSetup64.msi /qn /L*v C:\temp\MarketoAddinUninstall.log</pre>
Uninstalling the plugin remotely will forcefully close Outlook on the user’s machine.
Please refer Microsoft’s complete list of switches if you would like to try different logging levels or user interface levels.