Outlook Integration
Only 32 bit (x86) versions of Office are supported.Can be up to and including Office 2019 / 365.
Office must show up in Add/Remove Programs in Control Panel.
(last edited: 02/11/2023)
If Outlook button in Aderant is greyed out, then run the following script as administrator
@echo off
md "C:\Program Files\Microsoft Office"
md "C:\Program Files\Microsoft Office\root"
md "C:\Program Files\Microsoft Office\root\Office16"
c:
cd\
cd "Program Files\Microsoft Office\root\Office16"
echo.
IF %ERRORLEVEL% NEQ 0 goto :DIR-ERROR
IF exist OUTLOOK.EXE (
    echo Warning! Outlook file already exists in expected location.
    echo Please restart Aderant Total Office and test again before running this script.
    pause
) else (
    echo nul > OUTLOOK.EXE
)
IF %ERRORLEVEL% NEQ 0 goto :FILE-ERROR
echo SUCCESS!
pause
exit
:DIR-ERROR
echo Required folders could not be created. Script may need to be run as Administrator, or UAC settings disabled.
pause
exit
:FILE-ERROR
echo Folders were created, but Outlook stand-in file was not created. Script may need to be run as Administrator.
pause