Commands › Exchange Online
Set-RetentionPolicy
Change the properties of an existing retention policy.
Quick start script
# Set-RetentionPolicy — quick start (serv365.ai)
# 1. Connect (app-only shown; interactive: omit the certificate parameters)
Connect-ExchangeOnline -CertificateThumbprint $thumb -AppId $appId -Organization $org
# 2. Capture the current state first — you cannot roll back what you never recorded
$before = Get-RetentionPolicy
$before | Format-List
# 3. Make the change (dry run first)
Set-RetentionPolicy -Identity <MailboxPolicyIdParameter> -WhatIf
Set-RetentionPolicy -Identity <MailboxPolicyIdParameter>
# 4. Verify and diff
$after = Get-RetentionPolicy
Compare-Object ($before | Out-String) ($after | Out-String)
Syntax
Set-RetentionPolicy [-Identity] <MailboxPolicyIdParameter>
[-Confirm]
[-DomainController <Fqdn>]
[-Force]
[-IsDefault]
[-IsDefaultArbitrationMailbox]
[-Name <String>]
[-RetentionId <Guid>]
[-RetentionPolicyTagLinks <RetentionPolicyTagIdParameter[]>]
[-WhatIf]
[<CommonParameters>]
Parameters (10)
Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.