D
D
Denis2021-07-02 15:13:07
Microsoft Exchange
Denis, 2021-07-02 15:13:07

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

2 answer(s)
R
Roman Bezrukov, 2021-07-02
@denilenko

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

Additional to check:
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

M
Mnemonic0, 2021-07-02
@Mnemonic0

Nowhere and everywhere.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question