forked from timmcmic/DLConversionV2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnew-Office365DL.ps1
113 lines (82 loc) · 3.83 KB
/
new-Office365DL.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<#
.SYNOPSIS
This function creates the new distribution group in office 365.
.DESCRIPTION
This function creates the new distribution group in office 365.
.PARAMETER originalDLConfiguration
The original configuration of the DL on premises.
.PARAMETER groupTypeOverride
Submits the group type override of specified by the administrator at run time.
.OUTPUTS
None
.EXAMPLE
new-Office365DL -groupTypeOverride "Security" -originalDLConfiguration adConfigVariable.
#>
Function new-office365dl
{
[cmdletbinding()]
Param
(
[Parameter(Mandatory = $true)]
$originalDLConfiguration,
[Parameter(Mandatory = $true)]
[string]$groupTypeOverride
)
#Declare function variables.
$functionGroupType=$NULL #Holds the return information for the group query.
#Start function processing.
Out-LogFile -string "********************************************************************************"
Out-LogFile -string "BEGIN New-Office365DL"
Out-LogFile -string "********************************************************************************"
#Log the parameters and variables for the function.
Out-LogFile -string ("OriginalDLConfiguration = ")
out-logfile -string $originalDLConfiguration
out-logfile -string ("Group Type Override = "+$groupTypeOverride)
#Calculate the group type to be utilized.
#Three values - either NULL,Security,or Distribution.
out-Logfile -string ("The group type for evaluation is = "+$originalDLConfiguration.groupType)
if ($groupTypeOverride -Eq "Security")
{
out-logfile -string "The administrator overrode the group type to security."
$functionGroupType = "Security"
}
elseif ($groupTypeOverride -eq "Distribution")
{
out-logfile -string "The administrator overrode the group type to distribution."
$functionGroupType = "Distribution"
}
elseif ($groupTypeOverride -eq "None")
{
out-logfile -string "A group type override was not specified. Using group type from on premises."
if (($originalDLConfiguration.groupType -eq "-2147483640") -or ($originalDLConfiguration.groupType -eq "-2147483646") -or ($originalDLConfiguration.groupType -eq "-2147483644"))
{
out-logfile -string "The group type from on premises is security."
$functionGroupType = "Security"
}
elseif (($originalDLConfiguration.grouptype -eq "8") -or ($originalDLConfiguration.grouptype -eq "4") -or ($originalDLConfiguration.grouptype -eq "2"))
{
out-logfile -string "The group type from on premises is distribution."
$functionGroupType = "Distribution"
}
else
{
out-logfile -string "A group type override was not provided and the input did not include a valid on premises group type."
}
}
else
{
out-logfile -string "An invalid group type was utilized in function new-Office365DL" -isError:$TRUE
}
#Create the distribution group in office 365.
try
{
out-logfile -string "Creating the distribution group in Office 365."
new-o365distributionGroup -name $originalDLConfiguration.cn -alias $originalDLConfiguration.mailNickName -type $functionGroupType -ignoreNamingPolicy:$TRUE -errorAction STOP
}
catch
{
Out-LogFile -string $_ -isError:$TRUE
}
Out-LogFile -string "END New-Office365DL"
Out-LogFile -string "********************************************************************************"
}