PSP-Office365.psm1
<#
.DESCRIPTION Loader file for functions in PSP-Office365 module. .NOTES Name: PSP-Office365 Author: Robert Prust Version: 0.3.0 Blog: http://powershellpr0mpt.com .LINK http://powershellpr0mpt.com #> #Function Loader [cmdletbinding()] param() Write-Verbose $PSScriptRoot Write-Verbose 'Import Private Functions' $Private = @( Get-ChildItem -Path $PSScriptRoot\Private\*.ps1 -ErrorAction SilentlyContinue ) Write-Verbose 'Import Public Functions' $Public = @( Get-ChildItem -Path $PSScriptRoot\Public\*.ps1 -ErrorAction SilentlyContinue ) #Dot source the files Foreach ($Function in @($Public + $Private)) { Try { . $Function.FullName } Catch { Write-Error -Message "Failed to import function $($Function.FullName): $_" } } ### Export Public functions Export-ModuleMember -Function $Public.Basename |