Manages quarantine for a specific customer tenant ID.
The Set-CIPPQuarantineManagement function is used to manage quarantine for a specific customer tenant ID. It allows you to set various parameters such as the ID, AllowSender, and Type.
![]()
![]()
Specifies the customer tenant ID for which the quarantine management is performed. This parameter is mandatory.
![]()
![]()
Specifies the ID of the quarantine management. This parameter is mandatory.
![]()
![]()
Specifies whether to allow the sender. Valid values are 'true' or 'false'. This parameter is optional.
![]()
![]()
Specifies the type of quarantine management. Valid values are 'Deny' or 'Release'. This parameter is mandatory.
PS > Set-CIPPQuarantineManagement -CustomerTenantID "contoso.onmicrosoft.com" -ID "67890" -AllowSender "true" -Type "Deny"
This example sets the quarantine management for the customer tenant ID "contoso.onmicrosoft.com" with the ID "67890". It allows the sender and sets the type to "Deny".