Answer the question
In order to leave comments, you need to log in
Where can I see all the settings of the Exchange infrastructure so that I can transfer them to a new server?
Welcome all!
Straight to the point, given: there are old servers (on Hyper-V) with Exchange mail. There are new "empty" servers. It is necessary to deploy the same infrastructure on new servers as on old ones. Just a transfer / migration, etc. does not fit. Actually the question itself: where can I see and write down all the current settings of the mail infrastructure, so that after installing the system, AD, Exchange, etc. on new servers, they (the settings) can be reproduced in a new place?
Answer the question
In order to leave comments, you need to log in
run on old servers:
Start-Transcript EnvironmentBackup.txt
Get-OutlookProvider | Format-List
Get-OutlookAnywhere | Format-List
Get-ClientAccessServer | Format-List
Get-ActiveSyncVirtualDirectory | Format-List
Get-AutodiscoverVirtualDirectory | Format-List
Get-EcpVirtualDirectory | Format-List
Get-OabVirtualDirectory | Format-List
Get-OwaVirtualDirectory | Format-List
Get-MapiVirtualDirectory | Format-List
Get-PowerShellVirtualDirectory | Format-List
Get-WebServicesVirtualDirectory | Format-List
Get-SendConnector | Where-Object {$_.Enabled -eq $true} | Format-List
Get-SendConnector | Where-Object {$_.Enabled -eq $true} | Get-ADPermission | Where-Object {$_.extendedrights -like "*routing*"} | fl identity, user, *rights
Stop-Transcript
Resolve-DnsName -Type A -Name mail.domain.com
Resolve-DnsName -Type A -Name autodiscover.domain.com
Resolve-DnsName -Type A -Name mail.domain.com -Server 8.8.8.8
Resolve-DnsName -Type A -Name autodiscover.domain.com -Server 8.8.8.8
Resolve-DnsName -Type MX -Name domain.com -Server 8.8.8.8
Resolve-DnsName -Type TXT -Name domain.com -Server 8.8.8.8
Resolve-DnsName -Type A -Name i-should-not-exist.domain.com -Server 8.8.8.8
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question