GPO Software Deployment not working

deploymentgroup-policy

I am trying to deploy an MSI via GPO, without success. It is an Outlook plugin, and the MSI works (from that location) if I install it manually.

I have set it up to be assigned as follows:

enter image description here

When I do a gpupdate /force and then follow up with a gpresult it shows that the GPO has applied successfully. However there's no add-in installed (and nothing in add/remove programs).

Also if I check the event logs, it shows the GPO as having installed.

Best Answer

It's my suspicion that either

  1. Something in this plugin is angering Outlook, or, more likely
  2. Something is causing this installation to roll back. (Antivirus? Something else that polices Outlook configuration?)

I'm assuming, since it's an Outlook plugin, that it has to run as the user.

I would experiment with a login script that checks for the installed plugin, and, if it's not there, runs a msiexec /i file.msi /quiet to see what happens. Yes, I know that's what the GPO is doing. As a test, you could run it as a login script with logging (msiexec /i Example.msi /Lime c:\temp\logfile.txt) so you'd have a record of any errors. That should at least help you debug.