Unable to remove Skype Addin/Plugin from Outlook 0365

vinu_thankachan
Contributor

Help needed to remove Skype plugin from outlook (0365) . Tried setting the key DisableSkypeMeeting to True on com.microsoft.Outlook , but didn't work
https://docs.microsoft.com/en-us/DeployOffice/mac/preferences-outlook

3 REPLIES 3

CSCC-JS
Contributor II

Take a looking at this: https://docs.microsoft.com/en-us/skypeforbusiness/troubleshoot/server-install-or-uninstall/clean-uni...

I turned the above into this script

#!/bin/zsh

# https://docs.microsoft.com/en-us/skypeforbusiness/troubleshoot/server-install-or-uninstall/clean-uninstallation

killall "Skype for Business"

rm -rf /Applications/Skype for Business.app
rm -rf /Library/Internet Plug-Ins/MeetingJoinPlugin.plugin
defaults delete com.microsoft.SkypeForBusiness || true
rm -rf ~/Library/Containers/com.microsoft.SkypeForBusiness
rm -rf ~/Library/Logs/DiagnosticReports/Skype for Business_*
rm -rf ~/Library/Saved Application State/com.microsoft.SkypeForBusiness.savedState
rm -rf ~/Library/Preferences/com.microsoft.SkypeForBusiness.plist
rm -rf ~/Library/Application Support/CrashReporter/Skype for Business_*
rm -rf ~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/com.microsoft.skypeforbusiness*
rm -rf ~/Library/Cookies/com.microsoft.SkypeForBusiness*
rm -rf /private/var/db/receipts/com.microsoft.SkypeForBusiness*
rmdir ~/Library/Application Scripts/com.microsoft.SkypeForBusiness
find -f /private/var/db/BootCaches/* -name "app.com.microsoft.SkypeForBusiness*" -exec sudo rm -rf {}

exit 0

friveraLC
New Contributor III

@CSCC-JS This script looks like it would remove the application, I am looking to do the same as the OP and just remove the add in.

burnhamt
New Contributor III

@vinu.thankachan I used the Office Reset tool that @pbowden wrote. It works great.

a6486f66f88849288dbe17670939ef1e