5 lines
147 B
PowerShell
5 lines
147 B
PowerShell
|
Connect-ExchangeOnline
|
|||
|
|
|||
|
$Mailboxes = Get-Mailbox
|
|||
|
|
|||
|
ForEach ($User in $Mailboxes){set-Mailbox $User.UserPrincipalName -RemoveDelayHoldApplied}
|