Jump to content

Recommended Posts

Posted

Hi Everyone

 

Simple(ish) question hopefully has anyone found a good way to delete signatures from all users that are using Web Outlook

 

We are using Office 365 Online mail and not on prem

 

I can easily remove signatures for those using the old Outlook Desktop client.

 

Does anyone know a way to force delete users OWA signatures.

 

I know there is an option to disable access to signatures but this doesn't delete current ones

 

 

Thanks in Advance

Posted (edited)

This should work?

 

$mailboxes = Get-Mailbox -ResultSize unlimited;

$mailboxes | foreach { Set-MailboxMessageConfiguration -identity $_.alias -SignatureHtml "" -SignatureText "" -SignatureTextOnMobile ""}

 

Might be worth testing with a small sample of mailboxes first.

Edited by djm968
Posted

Cheers for the quick response :)

 

This is the script I've been using but it seems to have no effect

 

Connect-ExchangeOnline

$mailboxes = Get-Mailbox -ResultSize unlimited;$mailboxes | foreach { Write-Host $_.alias Set-MailboxMessageConfiguration -identity $_.alias -autoaddsignature $false }$mailboxes | foreach { Write-Host $_.alias Set-MailboxMessageConfiguration -identity $_.alias -SignatureHtml "" -SignatureText "" -SignatureTextOnMobile "" -AutoAddSignature $false -AutoAddSignatureOnReply $false -AutoAddSignatureOnMobile $false}

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...