-
Notifications
You must be signed in to change notification settings - Fork 12
/
Exch-Rest.psm1
37 lines (30 loc) · 1.3 KB
/
Exch-Rest.psm1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
$script:ModuleRoot = $PSScriptRoot
function Import-ModuleFile
{
[CmdletBinding()]
Param (
[string]
$Path
)
if ($doDotSource) { . $Path }
else { $ExecutionContext.InvokeCommand.InvokeScript($false, ([scriptblock]::Create([io.file]::ReadAllText($Path))), $null, $null) }
}
# Detect whether at some level dotsourcing was enforced
$script:doDotSource = $false
if ($Exch_Rest_dotsourcemodule) { $script:doDotSource = $true }
if ((Get-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\WindowsPowerShell\Exch-Rest\System" -Name "DoDotSource" -ErrorAction Ignore).DoDotSource) { $script:doDotSource = $true }
if ((Get-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\WindowsPowerShell\Exch-Rest\System" -Name "DoDotSource" -ErrorAction Ignore).DoDotSource) { $script:doDotSource = $true }
# Execute Preimport actions
. Import-ModuleFile -Path "$ModuleRoot/internal/scripts/preimport.ps1"
# Import all internal functions
foreach ($function in (Get-ChildItem "$ModuleRoot/internal/functions/*/*.ps1" -ErrorAction SilentlyContinue))
{
. Import-ModuleFile -Path $function.FullName
}
# Import all public functions
foreach ($function in (Get-ChildItem "$ModuleRoot/functions/*/*.ps1"))
{
. Import-ModuleFile -Path $function.FullName
}
# Execute Postimport actions
. Import-ModuleFile -Path "$ModuleRoot/internal/scripts/postimport.ps1"