-
Notifications
You must be signed in to change notification settings - Fork 10
/
get-msGraphDLConfiguration.ps1
61 lines (41 loc) · 2.04 KB
/
get-msGraphDLConfiguration.ps1
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<#
.SYNOPSIS
This function gathers the group information from Azure Active Directory.
.DESCRIPTION
This function gathers the group information from Azure Active Directory.
.PARAMETER office365DLConfiguration
The Office 365 DL configuration for the group.
.OUTPUTS
Returns the information from the associated group from Azure AD>
.EXAMPLE
get-AzureADDLConfiguration -office365DLConfiguration $configuration
#>
Function get-msGraphDLConfiguration
{
[cmdletbinding()]
Param
(
[Parameter(Mandatory = $true)]
$office365DLConfiguration
)
#Output all parameters bound or unbound and their associated values.
write-functionParameters -keyArray $MyInvocation.MyCommand.Parameters.Keys -parameterArray $PSBoundParameters -variableArray (Get-Variable -Scope Local -ErrorAction Ignore)
#Start function processing.
Out-LogFile -string "********************************************************************************"
Out-LogFile -string "BEGIN GET-AZUREADDLCONFIGURATION"
Out-LogFile -string "********************************************************************************"
#Get the recipient using the exchange online powershell session.
try{
$functionDLConfiguration = get-mgGroup -groupID $office365DLConfiguration.externalDirectoryObjectID -errorAction STOP
}
catch {
out-logfile -string $_
out-logfile -string "Unable to obtain group configuration from Azure Active Directory"
}
Out-LogFile -string "END GET-AzureADDlConfiguration"
Out-LogFile -string "********************************************************************************"
#This function is designed to open local and remote powershell sessions.
#If the session requires import - for example exchange - return the session for later work.
#If not no return is required.
return $functionDLConfiguration
}