Posts

Showing posts from May, 2024

365 Outlook Signatures on this device vs email account

Image
Office Suite Signatures shows a dropdown with your email address and "signatures on this device" This is caused by "Roaming Signatures" If your are one of those people that has a lot of signatures on your device you may want to disable the drop down. Here is the fix via the registry. Logged on as the user with the issue (which you may need to make a local admin temporarily if not already to edit the registry ) run Regedit and browse to: HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Outlook\Setup\ Create a new DWORD (32-bit) Name it "DisableRoamingSignaturesTemporaryToggle" and set value to "1" Close Regedit and reopen Outlook and confirm Roaming Signatures are disabled. Note: Do not forget to set the user back to a local user as necessary and logoff or reboot.

ADMT - WRN1:7814 A unique match was not found

ADMT  received the following error when merging accounts from 2 domains. I found that the domains being from different countries had different letters/accents.  The destination domain had Standard American characters for the usernames for example: Jeroma Cotec However on the source domain was: Jérôma Cotéç That caused the error above. We renamed the source domain user to standard US characters and the user merged with no issues. Jeroma Cotec

Server 2022 - SMTP Server Install and Customize to avoid IIS 6 MMC crash

Image
 NOTE: SMTP service is depreciated in Server 2022 however it still works if modified as listed below. To install SMTP services and not other unneeded IIS tools on Server 2022 Open Powershell as administrator and run Install-WindowsFeature -Name SMTP-Server Set-Service SMTPSVC -StartupType Automatic Net Stop SMTPSVC Net Stop IISADMIN Make a Backup Copy of  “C:\Windows\System32\inetsrv\MetaBase.xml” Copy “C:\Windows\System32\inetsrv\MetaBase.xml” to Documents and Edit Find: <IIsSmtpServer Location =“/LM/SmtpSvc/1” Add (Settings are alphabetical): RelayIpList=“” Save File Replace “C:\Windows\System32\inetsrv\MetaBase.xml” with edit copy Net Start IISAdmin Net Start SMTPSVC After configuring your SMTP server: To test SMTP flow install Telnet via Powershell: Install-WindowsFeature -Name Telnet-Client telnet smtp.clientdomain.com 25   (or IP) EHLO yourdomain.com MAIL FROM: internalsender@clientdomain.com RCPT TO: externalrecipient@testdomain.com DATA From: internalsender@clientdomain.com