DCSIMG
PowerShell,Exchange 2007 - David Dan

David Dan

Microsoft Products and Technologies

Browse by Tags

All Tags » PowerShell » Exchange 2007 (RSS)
Sorry, but there are no more tags available to filter with.
How to Create Routing Group Connectors from Exchange 2007 to Exchange Server 2003
New-RoutingGroupConnector -Name "Interop RGC" -SourceTransportServers "Ex2007Hub1.contoso.com" -TargetTransportServers "Ex2003BH1.contoso.com" -Cost 100 -Bidirectional $true -PublicFolderReferralsEnabled $true
how to get rid of the email that states that the meeting was forwarded
Your meeting was forwarded has forwarded your meeting request to additional recipients. Exchange 2007 how to get rid of this? We can get rid of the message by running the following command: To disable meeting forward notification, use set-mailboxcalendarsettings with the option RemoveForwardedMeetingNotifications. Set-MailboxCalendarSettings -Identity "usermailbox" -RemoveForwardedMeetingNotifications $true To apply the setting to all the mailboxes on Exchange 2007 use Get-Mailbox -ResultSize...