ADtoO365.psm1
<#
.NOTES Company: BitTitan, Inc. Title: ADtoO365.psm1 Author: SUPPORT@BITTITAN.COM Requirements: Version: 1.3 Date: DECEMBER 22, 2016 Disclaimer: This script is provided ‘AS IS’. No warrantee is provided either expresses or implied. Copyright: Copyright© 2016 BitTitan. All rights reserved. .SYNOPSIS Empty module file -- just calls all the functions packaged with this module. .DESCRIPTION .psm1 module file for the ADtoO365 module. #> $moduleRoot = Split-Path $MyInvocation.MyCommand.Path # Importing public functions (these are exposed through the module after import; only one is Sync-ADtoO365) "$moduleRoot\Public\*.ps1" | Resolve-Path | ForEach-Object { . $_.ProviderPath } # Importing all private helper functions (that are not exposed to the user through the module) "$moduleRoot\Private\*.ps1" | Resolve-Path | ForEach-Object { . $_.ProviderPath } |