-
Notifications
You must be signed in to change notification settings - Fork 141
/
MSFT_ADReplicationSite.psm1
232 lines (197 loc) · 7.06 KB
/
MSFT_ADReplicationSite.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
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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
$script:resourceModulePath = Split-Path -Path (Split-Path -Path $PSScriptRoot -Parent) -Parent
$script:modulesFolderPath = Join-Path -Path $script:resourceModulePath -ChildPath 'Modules'
$script:localizationModulePath = Join-Path -Path $script:modulesFolderPath -ChildPath 'ActiveDirectoryDsc.Common'
Import-Module -Name (Join-Path -Path $script:localizationModulePath -ChildPath 'ActiveDirectoryDsc.Common.psm1')
$script:localizedData = Get-LocalizedData -ResourceName 'MSFT_ADReplicationSite'
<#
.SYNOPSIS
Returns the current state of the AD replication site.
.PARAMETER Name
Specifies the name of the AD replication site.
#>
function Get-TargetResource
{
[CmdletBinding()]
[OutputType([System.Collections.Hashtable])]
param
(
[Parameter(Mandatory = $true)]
[System.String]
$Name
)
# Get the replication site filtered by it's name. If the site is not
# present, the command will return $null.
Write-Verbose -Message ($script:localizedData.GetReplicationSite -f $Name)
$replicationSite = Get-ADReplicationSite -Filter { Name -eq $Name } -ErrorAction SilentlyContinue
if ($null -eq $replicationSite)
{
Write-Verbose -Message ($script:localizedData.ReplicationSiteAbsent -f $Name)
$returnValue = @{
Ensure = 'Absent'
Name = $Name
Description = $null
RenameDefaultFirstSiteName = $false
}
}
else
{
Write-Verbose -Message ($script:localizedData.ReplicationSitePresent -f $Name)
$returnValue = @{
Ensure = 'Present'
Name = $Name
Description = $replicationSite.Description
RenameDefaultFirstSiteName = $false
}
}
return $returnValue
}
<#
.SYNOPSIS
Add, remove or rename the AD replication site.
.PARAMETER Ensure
Specifies if the AD replication site should be added or remove. Default
value is 'Present'.
.PARAMETER Name
Specifies the name of the AD replication site.
.PARAMETER RenameDefaultFirstSiteName
Specify if the Default-First-Site-Name should be renamed, if it exists.
Dafult value is 'false'.
#>
function Set-TargetResource
{
[CmdletBinding()]
param
(
[Parameter()]
[ValidateSet('Present', 'Absent')]
[System.String]
$Ensure = 'Present',
[Parameter(Mandatory = $true)]
[System.String]
$Name,
[Parameter()]
[System.Boolean]
$RenameDefaultFirstSiteName = $false,
[Parameter()]
[System.String]
$Description
)
$createOrUpdate = Get-TargetResource $Name
if ($Ensure -eq 'Present')
{
$defaultFirstSiteName = Get-ADReplicationSite -Filter { Name -eq 'Default-First-Site-Name' } -ErrorAction SilentlyContinue
<#
Check if the user specified to rename the Default-First-Site-Name
and if it still exists. If both is true, rename the replication site
instead of creating a new site.
#>
if ($RenameDefaultFirstSiteName -and ($null -ne $defaultFirstSiteName))
{
Write-Verbose -Message ($script:localizedData.AddReplicationSiteDefaultFirstSiteName -f $Name)
Rename-ADObject -Identity $defaultFirstSiteName.DistinguishedName -NewName $Name -ErrorAction Stop
}
else
{
if ($createOrUpdate.Ensure -eq 'Absent')
{
Write-Verbose -Message ($script:localizedData.AddReplicationSite -f $Name)
$newADReplicationSiteParameters = @{
Name = $Name
ErrorAction = 'Stop'
}
if($PSBoundParameters.ContainsKey('Description'))
{
$newADReplicationSiteParameters['Description'] = $Description
}
New-ADReplicationSite @newADReplicationSiteParameters
}
}
if($PSBoundParameters.ContainsKey('Description') -and ($createOrUpdate.Ensure -eq 'Present' -or $RenameDefaultFirstSiteName))
{
Write-Verbose -Message ($script:localizedData.UpdateReplicationSite -f $Name)
Set-ADReplicationSite -Identity $Name -Description $Description
}
}
if ($Ensure -eq 'Absent')
{
Write-Verbose -Message ($script:localizedData.RemoveReplicationSite -f $Name)
Remove-ADReplicationSite -Identity $Name -Confirm:$false -ErrorAction Stop
}
}
<#
.SYNOPSIS
Test the AD replication site.
.PARAMETER Ensure
Specifies if the AD replication site should be added or remove. Default
value is 'Present'.
.PARAMETER Name
Specifies the name of the AD replication site.
.PARAMETER RenameDefaultFirstSiteName
Specify if the Default-First-Site-Name should be renamed, if it exists.
Dafult value is 'false'.
.PARAMETER Description
Specifies a description of the object. This parameter sets the value of
the Description property for the object. The LDAP Display Name
(ldapDisplayName) for this property is 'description'.
#>
function Test-TargetResource
{
[CmdletBinding()]
[OutputType([System.Boolean])]
param
(
[Parameter()]
[ValidateSet('Present', 'Absent')]
[System.String]
$Ensure = 'Present',
[Parameter(Mandatory = $true)]
[System.String]
$Name,
[Parameter()]
[System.Boolean]
$RenameDefaultFirstSiteName = $false,
[Parameter()]
[System.String]
$Description
)
$currentConfiguration = Get-TargetResource -Name $Name
$configurationCompliant = $true
if ($currentConfiguration.Ensure -eq 'Absent')
{
# Site doesn't exist
if ($currentConfiguration.Ensure -eq $Ensure)
{
# Site should not exist
Write-Verbose -Message ($script:localizedData.ReplicationSiteInDesiredState -f $Name)
}
else
{
#Site should exist
Write-Verbose -Message ($script:localizedData.ReplicationSiteNotInDesiredState -f $Name)
$configurationCompliant = $false
}
}
else {
# Site Exists
if ($currentConfiguration.Ensure -eq $Ensure)
{
# Site should exist
if ($currentConfiguration.Description -ne $Description)
{
Write-Verbose -Message ($script:localizedData.ReplicationSiteNotInDesiredState -f $Name)
$configurationCompliant = $false
}
else
{
Write-Verbose -Message ($script:localizedData.ReplicationSiteInDesiredState -f $Name)
}
}
else
{
# Site should not exist
Write-Verbose -Message ($script:localizedData.ReplicationSiteNotInDesiredState -f $Name)
$configurationCompliant = $false
}
}
return $configurationCompliant
}