Teams Outlook Addin Not Showing

Register DLLs How to find all DLL’s registered cd “C:\Program Files (x86)\Microsoft\Teams\current\resources\meeting-addin\1.0.22234.1\x86\” RUN CMD As Admin for the below regsvr32 “Microsoft.Teams.AddinLoader.dll” If you don’t run as admin […]

iManage set default Author and Document Class

You can set the author and default document class by setting the following registry key. The variable %USERID% will resolve to the user that is logged in.[HKEY_CURRENT_USER\Software\Interwoven\WorkSite\8.0\iManExt\DefaultNewProfile]“382”=”%USERID%”“384”=”DOC”

The issue is that Office 2016 limits the search results to 75 items

It seems on some setups Office 2016 limits the search items display to 75###[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Office\16.0\Outlook\Search]“SearchResultsCap”=dword:00000000“DisableServerAssistedSearch”=dword:00000001###SearchResultsCap overrides how many items are viewable in your search results. 0 is all.DisableServerAssistedSearch […]

Installing VSTO run once

How to uninstall vsto “%CommonProgramFiles%\Microsoft Shared\VSTO\10.0\VSTOInstaller.exe” /uninstall \\path\to\vsto\AddIn.vsto How to silently install vsto “%CommonProgramFiles%\Microsoft Shared\VSTO\10.0\VSTOInstaller.exe” /install /silent \\path\to\vsto\AddIn.vsto How to install via group policy Bat Login Script […]