Getting connected to EWS

When working with EWS, you first need to create an instance of the ExchangeService class that can be used to send SOAP messages to an Exchange server. This class has several properties and methods that can be used to specify explicit credentials, set the web service's end-point URL, or make a connection using the built-in AutoDiscover client. In this recipe, you'll learn how to make a connection to EWS that can be used to run custom scripts against the web service.

How to do it...

  1. The first thing we need to do is load the EWS Managed API assembly into the shell:
    Add-Type -Path C:\EWS\Microsoft.Exchange.WebServices.dll
    
  2. Now we can create an instance of the ExchangeService class:
    $svc = New-Object Microsoft.Exchange.WebServices.Data.ExchangeService ...

Get Microsoft Exchange Server 2013 PowerShell Cookbook - Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.