2 weeks ago
Hello everyone, Could you please suggest where I need to copy the files to make an email signature template available in Outlook for all Mac devices? Or is there another way to achieve this?
2 weeks ago
I dont think this is possible. If I remember correctly, only the end user can modify their signature.
2 weeks ago
you can use a 3rd party tools like templafy to configure the email signature for outlook
2 weeks ago
This is better done by the Exchange admins at the tenant. There used to be ways to set a default template, nothing reliable for some time now.
a week ago
Script I wrote to capture the email signatures so I can back them up. You can copy the files out of the directory and then you have to delete the SQL files so it will automatically rebuild...
# Written: May 27, 2025
# Last updated: May 27, 2025
# by: Scott Kendall
#
# Script Purpose: Force Outlook desktop app to reindex all of the signatures by deleting the .sqlite files
#
# Version History
#
# 1.0 - Initial code
######################################################################################################
#
# Gobal "Common" variables
#
######################################################################################################
LOGGED_IN_USER=$( scutil <<< "show State:/Users/ConsoleUser" | awk '/Name :/ && ! /loginwindow/ { print $3 }' )
USER_DIR=$( dscl . -read /Users/${LOGGED_IN_USER} NFSHomeDirectory | awk '{ print $2 }' )
OUTLOOK_DIR="${USER_DIR}/Library/Group Containers/UBF8T346G9.Office/Outlook/Outlook 15 Profiles/Main Profile/Data"
cd "${OUTLOOK_DIR}"
rm -rf *.sqlite*
exit 0