Forum Discussion
Teams Calendar Integration with on prem Exchange 2016
- Oct 31, 2023
Hi NickG_ENV,
you can try to do this using this options (steps):- Create a new website in IIS for each of your email domains.
To do this, open IIS Manager and navigate to the Sites node. Right-click the Sites node and select Add Website. In the Add Website dialog box, enter a name for the website and select the physical path where you want to store the autodiscover file.
- Bind the SSL cert to each website.
To do this, right-click the website you created in step 1 and select Edit Bindings. In the Site Bindings dialog box, click Add. In the Add Site Binding dialog box, select https from the Type drop-down list. In the SSL certificate drop-down list, select the SSL cert you want to bind to the website. Click OK to save your changes.
- Create a new autodiscover file for each website.
The autodiscover file should contain the following XML:
<?xml version="1.0" encoding="utf-8"?> <Autodiscover xmlns="http://schemas.microsoft.com/exchange/autodiscover/outlook/requestschema/2006"> <Response xmlns="http://schemas.microsoft.com/exchange/autodiscover/outlook/responseschema/2006"> <Url>https://[your_domain]/autodiscover/autodiscover.xml</Url> </Response> </Autodiscover>To create the autodiscover file, open a text editor and paste the XML above into a new file. Save the file as autodiscover.xml.
- Save the autodiscover file to the root directory of each website.
To do this, navigate to the physical path where you stored the autodiscover file in step 1. Copy the autodiscover.xml file to the root directory of the website.
- Update your DNS records to point to the new autodiscover websites.
To do this, log in to your DNS management console and update the A records for your email domains to point to the IP address of the server where you are hosting the autodiscover websites.
Once you have completed these steps, your users will be able to automatically configure their Outlook clients to connect to your Exchange server using autodiscoverV2.
- [Configure Autodiscover XML for a Non-Root Domain] (https://dirteam.com/dave/2014/08/13/optimizing-the-autodiscover-process-by-skipping-the-root-domain-query/)
- [How to publish AutodiscoverV2 for Exchange 2016] (https://www.mustbegeek.com/configure-autodiscover-in-exchange-2016/)
Please click Mark as Best Response & Like if my post helped you to solve your issue.
This will help others to find the correct solution easily. It also closes the item.If the post was useful in other ways, please consider giving it Like.
Kindest regards,
Leon Pavesic
(LinkedIn)
Hi NickG_ENV,
you can try to do this using this options (steps):
- Create a new website in IIS for each of your email domains.
To do this, open IIS Manager and navigate to the Sites node. Right-click the Sites node and select Add Website. In the Add Website dialog box, enter a name for the website and select the physical path where you want to store the autodiscover file.
- Bind the SSL cert to each website.
To do this, right-click the website you created in step 1 and select Edit Bindings. In the Site Bindings dialog box, click Add. In the Add Site Binding dialog box, select https from the Type drop-down list. In the SSL certificate drop-down list, select the SSL cert you want to bind to the website. Click OK to save your changes.
- Create a new autodiscover file for each website.
The autodiscover file should contain the following XML:
<?xml version="1.0" encoding="utf-8"?>
<Autodiscover xmlns="http://schemas.microsoft.com/exchange/autodiscover/outlook/requestschema/2006">
<Response xmlns="http://schemas.microsoft.com/exchange/autodiscover/outlook/responseschema/2006">
<Url>https://[your_domain]/autodiscover/autodiscover.xml</Url>
</Response>
</Autodiscover>
To create the autodiscover file, open a text editor and paste the XML above into a new file. Save the file as autodiscover.xml.
- Save the autodiscover file to the root directory of each website.
To do this, navigate to the physical path where you stored the autodiscover file in step 1. Copy the autodiscover.xml file to the root directory of the website.
- Update your DNS records to point to the new autodiscover websites.
To do this, log in to your DNS management console and update the A records for your email domains to point to the IP address of the server where you are hosting the autodiscover websites.
Once you have completed these steps, your users will be able to automatically configure their Outlook clients to connect to your Exchange server using autodiscoverV2.
- [Configure Autodiscover XML for a Non-Root Domain] (https://dirteam.com/dave/2014/08/13/optimizing-the-autodiscover-process-by-skipping-the-root-domain-query/)
- [How to publish AutodiscoverV2 for Exchange 2016] (https://www.mustbegeek.com/configure-autodiscover-in-exchange-2016/)
Please click Mark as Best Response & Like if my post helped you to solve your issue.
This will help others to find the correct solution easily. It also closes the item.
If the post was useful in other ways, please consider giving it Like.
Kindest regards,
Leon Pavesic
(LinkedIn)
- NickG_ENVNov 01, 2023Brass ContributorThank you! Really appreciate you taking the time to answer my question. I will give that a shot.