Exchange 2010 network ports
If you need to test your Exchange 2010 SP1 configuration you can use the following test commands.
###SCP Check the current configuration.
Get-ClientAccessServer | Select Name, *Internal* | fl
###WebServices List the current values for Internal and External URLs.
Get-WebServicesVirtualDirectory | Select name, *url* | fl
###OWA List the current values for Internal and External URLs.
Get-OwaVirtualDirectory | Select name, *url*, identity | fl
###Exchange Control Panel List the current values for Internal and External URLs.
Get-EcpVirtualDirectory | Select name, *url*, identity | fl
###Get the RPC CAS
Get-MailboxDatabase databasename | fl RpcClientAccessServer
###Tests the configuration of ActiveSync against a mailbox
Test-ActiveSyncConnectivity
###Tests the synchronization status of subscribed Edge Transport servers
Test-EdgeSynchronization
###Tests the content indexing service for correct functionality
Test-ExchangeSearch
###Tests the IMAP4 service for correct functionality
Test-ImapConnectivity
###Tests the configuration of the IP Allow List provider
Test-IPAllowListProvider
###Tests the configuration of the IP Block List provider
Test-IPBlockListProvider
###Tests the sending and receiving of email
Test-Mailflow
###Tests that a mailbox can be logged onto properly
Test-MapiConnectivity
###Tests the Autodiscover service settings
Test-OutlookWebServices
###Tests that Outlook Web Access is functioning correctly
Test-OwaConnectivity
###Tests the POP3 service for correct functionality
Test-PopConnectivity
###Tests the health of storage group replication
Test-ReplicationHealth
###Tests the Sender ID process
Test-SenderId
###Tests that all required services have started successfully
Test-ServiceHealth
###Tests the overall configuration of your Exchange organization
$c=get-credential (use the proper permission account)
Test-Systemhealth -adcredentials $c -Verbose |fl
###Tests the operation of a Unified Messaging server
Test-UMConnectivity
###Tests the functionality of Outlook Anywhere
Test-WebServicesConnectivity
###Shows the Transport Configuration
Get-TransportConfig | fl
###Shows the SendConnectors
Get-SendConnector | fl
