forked from timmcmic/DLConversionV2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnew-RoutingContact.ps1
208 lines (152 loc) · 8.35 KB
/
new-RoutingContact.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
<#
.SYNOPSIS
This function creates the routing contact that will be utilized later if hybrid mail flow is enabled <and> to track attribute membership.
.DESCRIPTION
This function creates the routing contact that will be utilized later if hybrid mail flow is enabled <and> to track attribute membership.
.PARAMETER originalDLConfiguration
This is the original DL configuration from on premises.
.PARAMETER office365DLConfiguration
The configuration of the DL from Office 365.
.PARAMETER GlobalCatalog
The global catalog server the operation should be performed on.
.PARAMETER adCredential
The active directory credential.
.PARAMETER isRetry
Determines if this operation is being retried.
.PARAMETER isRetryOU
The OU that will be utilized when the operation is retried.
.OUTPUTS
No return.
.EXAMPLE
new-routingContact -originalDLConfiguration $config -office365DLConfiguration $configo365 -globalCatalogServer $GC -adCredential $cred
#>
Function new-routingContact
{
[cmdletbinding()]
Param
(
[Parameter(Mandatory = $true)]
$originalDLConfiguration,
[Parameter(Mandatory = $true)]
$office365DLConfiguration,
[Parameter(Mandatory = $true)]
$globalCatalogServer,
[Parameter(Mandatory = $true)]
$adCredential,
[Parameter(Mandatory = $false)]
[boolean]$isRetry = $false,
[Parameter(Mandatory = $false)]
[string]$isRetryOU = $false
)
#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 new-RoutingContact"
Out-LogFile -string "********************************************************************************"
#Declare function variables and output to screen.
[string]$functionCustomAttribute1="MigratedByScript"
out-logfile -string ("Function Custom Attribute 1 = "+$functionCustomAttribute1)
if ($originalDLConfiguration.mail -ne $NULL)
{
out-logfile -string "DL Configuration Contains Mail = use mail attribute."
[string]$functionCustomAttribute2=$originalDLConfiguration.mail
out-logfile -string ("Function Custom Attribute 2 = "+$functionCustomAttribute2)
}
else
{
out-logfile -string ("DL Configuration based off Office 365 - use windowsEmailAddress attribute.")
[string]$functionCustomAttribute2=$office365DLConfiguration.WindowsEmailAddress
out-logfile -string ("Function Custom Attribute 2 = "+$functionCustomAttribute2)
}
out-logfile -string "Evaluate OU location to utilize."
if ($isRetry -eq $FALSE)
{
out-logfile -string "Operation is not retried - using on premises value."
[string]$functionOU=Get-OULocation -originalDLConfiguration $originalDLConfiguration
}
else
{
out-logfile -string "Operation is being retried - use administrator supplied value."
$functionOU = $isRetryOU
}
out-logfile -string ("Function OU = "+$functionOU)
foreach ($address in $office365DLConfiguration.emailAddresses)
{
out-logfile -string ("Testing address for remote routing address = "+$address)
if ($address.contains("mail.onmicrosoft.com"))
{
out-logfile -string ("The remote routing address was found = "+$address)
$functionTargetAddress=$address
$functionTargetAddress=$functionTargetAddress.toUpper()
}
}
out-logfile -string ("Function target address = "+$functionTargetAddress)
#This logic allows the code to be re-used when only the Office 365 information is available.
if ($isRetry -eq $FALSE)
{
out-logfile -string "Operation is not retried - use on premsies value."
[string]$functionCN=$originalDLConfiguration.CN+"-MigratedByScript"
}
else
{
out-logfile -string "Operation is retried - use Office 365 value."
[string]$functionCN=$originalDLConfiguration.alias+"-MigratedByScript"
}
$functionCN=$functionCN.replace(' ','')
out-logfile -string ("Function Common Name:"+$functionCN)
if ($isRetry -eq $FALSE)
{
out-logfile -string "Operation is not retried - use on premsies value."
[array]$functionProxyAddressArray=$originalDLConfiguration.mail.split("@")
}
else
{
out-logfile -string "Operation is retried - use Office 365 value."
[array]$functionProxyAddressArray=$originalDLConfiguration.windowsEmailAddress.split("@")
}
foreach ($member in $functionProxyAddressArray)
{
out-logfile -string $member
}
if ($originalDLConfiguration.displayName -ne $NULL)
{
[string]$functionDisplayName = $originalDLConfiguration.DisplayName+"-MigratedByScript"
$functionDisplayName=$functionDisplayName.replace(' ','')
}
else
{
[string]$functionDisplayName = $office365DLConfiguration.DisplayName+"-MigratedByScript"
$functionDisplayName=$functionDisplayName.replace(' ','')
}
[string]$functionName=$functionCN
[string]$functionFirstName = $functionDisplayName
[string]$functionLastName = "MigratedByScript"
[boolean]$functionHideFromAddressList=$true
[string]$functionRecipientDisplayType="6"
[string]$functionMail=$functionProxyAddressArray[0]+"-MigratedByScript@"+$functionProxyAddressArray[1]
[string]$functionProxyAddress="SMTP:"+$functionMail
[string]$functionMailNickname=$functionProxyAddressArray[0]+"-MigratedByScript"
[string]$functionDescription="This is the mail contact created post migration to allow non-migrated DLs to retain memberships and permissions settings. DO NOT DELETE"
[string]$functionSelfAccountSid = "S-1-5-10"
out-logfile -string ("Function display name = "+$functionDisplayName)
out-logfile -string ("Function Name = "+$functionName)
out-logfile -string ("Function First Name = "+$functionFirstName)
out-logfile -string ("Function Last Name = "+$functionLastName)
out-logfile -string ("Function hide from address list = "+$functionHideFromAddressList)
out-logfile -string ("Function recipient display type = "+$functionRecipientDisplayType)
out-logfile -string ("Function proxy address = "+$functionProxyAddress)
out-logfile -string ("Function mail nickname = "+$functionMailNickname)
out-logfile -string ("Function description = "+$functionDescription)
out-logfile -string ("Function mail address = "+$functionMail)
#Provision the routing contact.
#When the contact is provisioned we add the master account sid of self. This tricks exchange commands into allowing us to assign permissions that are reserved for security principals.
try {
new-adobject -server $globalCatalogServer -type "Contact" -name $functionName -displayName $functionDisplayName -description $functionDescription -path $functionOU -otherAttributes @{givenname=$functionFirstName;sn=$functionLastName;mail=$functionMail;extensionAttribute1=$functionCustomAttribute1;extensionAttribute2=$functionCustomAttribute2;targetAddress=$functionTargetAddress;msExchHideFromAddressLists=$functionHideFromAddressList;msExchRecipientDisplayType=$functionRecipientDisplayType;proxyAddresses=$functionProxyAddress;mailNickName=$functionMailNickname;msExchMasterAccountSid=$functionSelfAccountSid} -credential $adCredential -errorAction STOP
}
catch {
out-Logfile -string $_ -isError:$TRUE
}
Out-LogFile -string "END new-RoutingContact"
Out-LogFile -string "********************************************************************************"
}