Articles in this section

Disable email signatures in Outlook Web App (OWA)

By default, users are allowed to create and modify their own email signatures in Outlook Web App. To prevent this, a policy can be created, which disables this feature for all users.

  Prerequisites

  • Global Administrator to Exchange Online.

Creating the policy

  1. Navigate to https://admin.exchange.microsoft.com/.
  2. Open the Roles dropdown and select Outlook web app policies.
  3. Add a new policy or edit an existing one:
    • Under Select features, and the User experience dropdown, uncheck Email signature.

  Note

It may take a few hours for the policy to propagate to all users within the organization.

Disable active user signatures

In case users have already added a custom signature, following the above steps will not disable the existing signature from being inserted by Outlook, only disable the access to create new signatures. To disable the automatic adding of user signatures the following PowerShell script can be executed to automate the process.

$mailboxes = Get-Mailbox -ResultSize unlimited
$mailboxes | foreach { Set-MailboxMessageConfiguration -identity $_.alias -autoaddsignature $false }
NDR OWA Outlook Online tech_role
Was this article helpful?
0 out of 0 found this helpful

Comments

0 comments

Article is closed for comments.