Address Rewriting Order of Precedence Single Email Address Rewrite Domain Rewrite Domain Wildcard Rewrite Enable the Address Rewriting Agents Enable-TransportAgent -Identity “Address Rewriting Outbound agent” Enable-TransportAgent -Identity “Address Rewriting Inbound agent” Disable the Address Rewriting Agents Disable-TransportAgent -Identity …
Output Receive Connector Settings to a Text File Get-ReceiveConnector <ReceiveConnectorName> | Format-List | Out-File “X:\FilePath\Receive-Connector.txt” Create a New Receive Connector and Copy the Remote IP Ranges from an Existing Receive Connector on Another Hub Server New-ReceiveConnector <ReceiveConnectorName> -Server <ServerName> …
List Mailboxes with Custom Quotas and Export to CSV get-mailbox -resultsize unlimited | where-object { $_.UseDatabaseQuotaDefaults -eq $false } | select-object DisplayName,Database,UseDatabaseQuotaDefaults,ProhibitSendReceiveQuota | export-csv ‘.\user-quotas.csv’ Find Recipients that Use a Particular Email Domain get-recipient -resultsize unlimited | where { …