Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Store level stuff

Management With PowerShell

Store level stuff

by  Zelandakh  Posted    (Edited  )
# Add a disclaimer to all messages sent from the mailbox MayLContact
$ConditionArray = Get-TransportRulePredicate
$Condition = @($ConditionArray[0])
$Condition[0].addresses = get-mailbox MayLContact@domain.com
$ActionArray = Get-TransportRuleAction
$Action = @($ActionArray[14])
$Action[0].Text = "I am May L Contact, your mail contact."
New-TransportRule "MayLContact disclaimer" -Conditions $condition -Actions $action

# Report the mount status for all mailbox databases.
Get-MailboxDatabase -status | fl Name,Mounted

# Disable Out of Office for external email.
# Note that this sets the flag to InternalOnly so you donÆt see a ôdonÆt do externalö
get-MailboxDatabase "First Database" | set-mailbox -ExternalOOF InternalOnly

# Create a new receive connector that will only receive email from your ISP at 81.1.2.3
New-ReceiveConnector ôReceive Connectorö -Bindings:192.168.0.1:25 -RemoteIPRanges 81.1.2.3

# Set a journal recipient
set-MailboxDatabase Exchange2007MBXServer\DBName -JournalRecipient domain\username

Register to rate this FAQ  : BAD 1 2 3 4 5 6 7 8 9 10 GOOD
Please Note: 1 is Bad, 10 is Good :-)

Part and Inventory Search

Back
Top