Articles in this section

Disable email signatures in Outlook Web App (OWA)

About this article

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. This article will teach you how to do so.

Sections in this article:

 

Prerequisites

 
  • Exchange admin center access

 

Creating the policy

      1. Navigate the the "Exchange admin center".

      2. Click the "permissions" tab.

      3. Select the "Outlook Web App policies" tab.

      4. Add or edit the policy assigned to the users where the feature should be disabled 

 

mceclip0.png

      6. In the dialog box, select the "features" tab

      7. Uncheck the "Email signature" option 

      8. Click "Save"

 

Note

 
  • If the "Email Signature" option is not visible, click the "More options..." link at the bottom of the list.

 

features-emailsignature.png

 

Note

 
  • Modifying these settings can in some cases take a couple of hours to propagate to all users in the organization.

 

Disable auto-adding 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 the feature. 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 }

 

Related articles

 

 

email signatures OWA Outlook Online
Was this article helpful?
0 out of 0 found this helpful

Comments

0 comments

Article is closed for comments.