Skip to content

Uses Exchange Web Services to synchronize a Global Address List in Office 365 to a user's mailbox

License

Notifications You must be signed in to change notification settings

msfreaks/EWS-Office365-Contact-Sync

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

EWS Contact Sync

Utilizes both Exchange Web Services and Office 365 Remote PowerShell Services to sync your Global Address List to any/every user in the directory.

Why would I want to use this? iPhone/Android devices don't currently support offline Global Address List synchronization. By loading the Global Address List contacts into a folder within user's mailbox, you can circumvent this limitation.

Features

  • Fetch a list of contacts using the Office 365 Directory
  • Import the list of contacts into a specified user's Office 365 mailbox
  • You can run the sync for any number of users
  • Specify a custom contact folder
  • Uses Application Impersonation so this can all be done from a single admin account (that has Application Impersonation permissions)

Getting Started

  1. Install the EWS API here: https://www.microsoft.com/en-us/download/details.aspx?id=42951
  2. Download the latest version of the script here: https://github.com/grahamr975/EWS-Office365-Contact-Sync
  3. Export your Office 365 administrator credentials to a CliXml credential file. See below for an example on how to do this.
$Credxmlpath = "C:\MyCredentials\"
$Credential | Export-Clixml $Credxmlpath
  1. You may need to unblock the included .dll files. To do this, navigate to EWSContacts\Module\bin -> For each .dll file, right click on the file -> Check 'Unblock'

  2. To test the script, run for a single mailbox in your directory. See below for an example (batch file)

@echo off
cd "%~dp0EWS-Office365-Contact-Sync"

PowerShell.exe -ExecutionPolicy Bypass ^
-File "%CD%\EWSContactSync.ps1" ^
-CredentialPath "C:\Encrypted Credentials\SecureCredential.cred" ^
-FolderName "Directory Contacts" ^
-LogPath "%~dp0Logs" ^
-MailboxList john.doe@mycompany.com ^
-ModernAuth
pause
  1. Once you're ready, specify DIRECTORY for MailboxList. This will sync the contacts for all users in your directory. See below for an example (batch file)
@echo off
cd "%~dp0EWS-Office365-Contact-Sync"

PowerShell.exe -ExecutionPolicy Bypass ^
-File "%CD%\EWSContactSync.ps1" ^
-CredentialPath "C:\Encrypted Credentials\SecureCredential.cred" ^
-FolderName "Directory Contacts" ^
-LogPath "%~dp0Logs" ^
-MailboxList DIRECTORY ^
-ModernAuth
pause

Prerequisites

Deployment

See EWSContactSync.ps1 for documentation on optional parameters for filtering conatcts, mailboxes, etc...

Built With

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

Authors

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Acknowledgments

About

Uses Exchange Web Services to synchronize a Global Address List in Office 365 to a user's mailbox

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PowerShell 100.0%