Hi @Niven Peter ,
1.About Get -IntraOrganizationConnector and Get-RemoteDomain.
1)We could run the following command to remove the intra Organization connector. Based on my knowledge, the intra organization connector is used to share free/busy information in hybrid deployment, and if OAuth is configured, it also needs to be disabled when the Hybrid configuration is uninstalled. For more information please refer to the Scenario one in this article: How and when to decommission your on-premises Exchange servers in a hybrid deployment
From the on-premises Exchange server, open the Exchange Management Shell:
Get-IntraorganizationConnector -Identity ExchangeHybridOnPremisesToOnline | Set-IntraOrganizationConnector -Enabled $False
Connect Windows Powershell to Exchange online:
Get-IntraorganizationConnector -Identity ExchangeHybridOnlineToOnPremises | Set-IntraOrganizationConnector -Enabled $False
2)The remote domain is used to set certain specific settings for a specific domain in terms of OOF, automatic forwarding, etc. By default, there will be a remote domain with a scope of all domains. The remote domain set by yourself will take precedence over the default remote domain. But if you don’t need to use it now, you can run the following command to remove the remote domain. For more information you could refer to: Remote domains in Exchange Online
Remove-RemoteDomain -Identity <>
2.About the secondary SMTP address, I found a script could bulk remove the secondary SMTP address. I test it in my lab environment and successfully deleted SMTP address I set. You could replace "*contoso.com" in the script according to your needs. For the specific script: Bulk remove secondary SMTP address with PowerShell
Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
3.The X500 address is synchronized from Exchange online to the local Exchange in a hybrid deployment. If we don’t add the X500 address to the user’s attributes, when dealing with the old mail items, the sender may receive NDR (Non-delivery Report) reporting that the specific recipient doesn’t exist. According to your situation, I think it can be deleted, but in order to prevent accidents from happening, I suggest you back up the X500 address of one of the user’s mailboxes, and then delete it. Then check whether the sending and receiving of the mailbox is normal.
If the response is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.