Issue with Outlook 15.32?

mhasman
Valued Contributor

Is anybody experiencing an issue with Outlook after updated with today's version 15.32? Some users reported that they can not open new emails - clicking to the "New Email" button does not open the new email window. Outlook itself shows the status "Connected to Server".
Thanks!

2 ACCEPTED SOLUTIONS

RobertHammen
Valued Contributor II

@carlo.anselmi WebEx Productivity Tools in particular. Need to be running 31.11.1.62 or later. There's a LaunchAgent in /Library/LaunchAgents, a plugin in /Library/Application Support/Microsoft, and an app folder inside /Users/Shared that need to be removed if 15.32 is installed.

#!/bin/sh
if [[ -e "//Library/Application Support/Microsoft/WebExPlugin" ]]; then
   /bin/rm -rf "/Library/Application Support/Microsoft/WebExPlugin"
fi

if [[ -e "//Library/LaunchAgents/com.webex.pluginagent.plist" ]]; then
   /bin/rm -rf "/Library/LaunchAgents/com.webex.pluginagent.plist"
fi

if [[ -e "//Users/Shared/WebExPlugin" ]]; then
   /bin/rm -rf "/Users/Shared/WebExPlugin"
fi

View solution in original post

Tigerhaven
Contributor

Webex Productivity Tool Version 31.11.1.62 resolved the issue with Outlook 15.32 and .33 (in fast track)

Kunal V

View solution in original post

7 REPLIES 7

mhasman
Valued Contributor

Seems like WebEx is the reason of the issue...

carlo_anselmi
Contributor III

Hello, would you be so kind sharing some additional info about your findings?
Thank you!

RobertHammen
Valued Contributor II

@carlo.anselmi WebEx Productivity Tools in particular. Need to be running 31.11.1.62 or later. There's a LaunchAgent in /Library/LaunchAgents, a plugin in /Library/Application Support/Microsoft, and an app folder inside /Users/Shared that need to be removed if 15.32 is installed.

#!/bin/sh
if [[ -e "//Library/Application Support/Microsoft/WebExPlugin" ]]; then
   /bin/rm -rf "/Library/Application Support/Microsoft/WebExPlugin"
fi

if [[ -e "//Library/LaunchAgents/com.webex.pluginagent.plist" ]]; then
   /bin/rm -rf "/Library/LaunchAgents/com.webex.pluginagent.plist"
fi

if [[ -e "//Users/Shared/WebExPlugin" ]]; then
   /bin/rm -rf "/Users/Shared/WebExPlugin"
fi

mhasman
Valued Contributor

@carlo.anselmi We found that previews version of WebEx Prod Tools was responsible for the issue. When not installed, 15.32 works fine. Seems like we need updated version. I just downloaded 31.11.1.62, and was going to test it.

@RobertHammen Robert , thank you for details and script!

Tigerhaven
Contributor

Webex Productivity Tool Version 31.11.1.62 resolved the issue with Outlook 15.32 and .33 (in fast track)

Kunal V

carlo_anselmi
Contributor III

Hello and many thanks for your detailed answers!

mottertektura
Contributor

Strange enough, if Outlook is open full screen the New Email button works. Upgrading to WebEx Productivity Tools 31.11 now to see if it resolves this issue for me. Thanks for the info!