getting serivce url of exchange server by Exchange Web Service (EWS) Api using AutoDiscoverURL

if you don’t know your exhcange service url you can use powershell for getting url information easyly.

[System.Reflection.Assembly]::LoadFile(“C:\Program Files\Microsoft\Exchange\Web Services\1.1\Microsoft.Exchange.WebServices.dll”);
$Service = new-object Microsoft.Exchange.WebServices.Data.ExchangeService $Service.AutoDiscoverUrl(“<EMAIL ADDRESS>”)
$Service.Url

Advertisement