forked from dataplat/dbatools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy-SqlPolicyManagement.ps1
255 lines (207 loc) · 8.99 KB
/
Copy-SqlPolicyManagement.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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
Function Copy-SqlPolicyManagement
{
<#
.SYNOPSIS
Migrates SQL Policy Based Management Objects, including both policies and conditions.
.DESCRIPTION
By default, all policies and conditions are copied. If an object already exist on the destination, it will be skipped unless -Force is used.
The -Policies and -Conditions parameters are autopopulated for command-line completion and can be used to copy only specific objects.
THIS CODE IS PROVIDED "AS IS", WITH NO WARRANTIES.
.PARAMETER Source
Source SQL Server.You must have sysadmin access and server version must be SQL Server version 2008 or higher.
.PARAMETER Destination
Destination Sql Server. You must have sysadmin access and server version must be SQL Server version 2008 or higher.
.PARAMETER SourceSqlCredential
Allows you to login to servers using SQL Logins as opposed to Windows Auth/Integrated/Trusted. To use:
$scred = Get-Credential, then pass $scred object to the -SourceSqlCredential parameter.
Windows Authentication will be used if DestinationSqlCredential is not specified. SQL Server does not accept Windows credentials being passed as credentials.
To connect as a different Windows user, run PowerShell as that user.
.PARAMETER DestinationSqlCredential
Allows you to login to servers using SQL Logins as opposed to Windows Auth/Integrated/Trusted. To use:
$dcred = Get-Credential, then pass this $dcred to the -DestinationSqlCredential parameter.
Windows Authentication will be used if DestinationSqlCredential is not specified. SQL Server does not accept Windows credentials being passed as credentials.
To connect as a different Windows user, run PowerShell as that user.
.PARAMETER Force
If policies exists on destination server, it will be dropped and recreated.
.NOTES
Author: Chrissy LeMaire (@cl), netnerds.net
Requires: sysadmin access on SQL Servers
dbatools PowerShell module (https://dbatools.io, clemaire@gmail.com)
Copyright (C) 2016 Chrissy LeMaire
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.
.LINK
https://dbatools.io/Copy-SqlPolicyManagement
.EXAMPLE
Copy-SqlPolicyManagement -Source sqlserver2014a -Destination sqlcluster
Copies all policies and conditions from sqlserver2014a to sqlcluster, using Windows credentials.
.EXAMPLE
Copy-SqlPolicyManagement -Source sqlserver2014a -Destination sqlcluster -SourceSqlCredential $cred
Copies all policies and conditions from sqlserver2014a to sqlcluster, using SQL credentials for sqlserver2014a and Windows credentials for sqlcluster.
.EXAMPLE
Copy-SqlPolicyManagement -Source sqlserver2014a -Destination sqlcluster -WhatIf
Shows what would happen if the command were executed.
.EXAMPLE
Copy-SqlPolicyManagement -Source sqlserver2014a -Destination sqlcluster -Policy 'xp_cmdshell must be disabled'
Copies only one policy, 'xp_cmdshell must be disabled' from sqlserver2014a to sqlcluster. No conditions are migrated.
#>
[CmdletBinding(DefaultParameterSetName = "Default", SupportsShouldProcess = $true)]
param (
[parameter(Mandatory = $true)]
[object]$Source,
[parameter(Mandatory = $true)]
[object]$Destination,
[System.Management.Automation.PSCredential]$SourceSqlCredential,
[System.Management.Automation.PSCredential]$DestinationSqlCredential,
[switch]$Force
)
DynamicParam { if ($source) { return (Get-ParamSqlPolicyManagement -SqlServer $Source -SqlCredential $SourceSqlCredential) } }
BEGIN
{
if ([System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SqlServer.Dmf") -eq $null)
{
throw "SMO version is too old. To migrate Policies, you must have SQL Server Management Studio 2008 R2 or higher installed."
}
$sourceserver = Connect-SqlServer -SqlServer $Source -SqlCredential $SourceSqlCredential
$destserver = Connect-SqlServer -SqlServer $Destination -SqlCredential $DestinationSqlCredential
$source = $sourceserver.DomainInstanceName
$destination = $destserver.DomainInstanceName
$policies = $psboundparameters.policies
$conditions = $psboundparameters.conditions
if ($sourceserver.versionMajor -lt 10 -or $destserver.versionMajor -lt 10)
{
throw "Policy Management is only supported in SQL Server 2008 and above. Quitting."
}
}
PROCESS
{
$sourceSqlConn = $sourceserver.ConnectionContext.SqlConnectionObject
$sourceSqlStoreConnection = New-Object Microsoft.SqlServer.Management.Sdk.Sfc.SqlStoreConnection $sourceSqlConn
$sourceStore = New-Object Microsoft.SqlServer.Management.DMF.PolicyStore $sourceSqlStoreConnection
$destSqlConn = $destserver.ConnectionContext.SqlConnectionObject
$destSqlStoreConnection = New-Object Microsoft.SqlServer.Management.Sdk.Sfc.SqlStoreConnection $destSqlConn
$destStore = New-Object Microsoft.SqlServer.Management.DMF.PolicyStore $destSqlStoreConnection
$storepolicies = $sourceStore.policies | Where-Object { $_.IsSystemObject -eq $false }
$storeconditions = $sourceStore.conditions | Where-Object { $_.IsSystemObject -eq $false }
if ($policies.length -gt 0) { $storepolicies = $storepolicies | Where-Object { $policies -contains $_.Name } }
if ($conditions.length -gt 0) { $storeconditions = $storeconditions | Where-Object { $conditions -contains $_.Name } }
if ($policies.length -gt 0 -and $conditions.length -eq 0) { $storeconditions = $null }
if ($conditions.length -gt 0 -and $policies.length -eq 0) { $storepolicies = $null }
<#
Conditions
#>
Write-Output "Migrating conditions"
foreach ($condition in $storeconditions)
{
$conditionName = $condition.name
if ($deststore.conditions[$conditionName] -ne $null)
{
if ($force -eq $false)
{
Write-Warning "condition '$conditionName' was skipped because it already exists on $destination"
Write-Warning "Use -Force to drop and recreate"
continue
}
else
{
if ($Pscmdlet.ShouldProcess($destination, "Attempting to drop $conditionName"))
{
Write-Verbose "Condition '$conditionName' exists on $destination"
Write-Verbose "Force specified. Dropping $conditionName."
try
{
$dependentpolicies = $deststore.conditions[$conditionName].EnumDependentPolicies()
foreach ($dependent in $dependentpolicies)
{
$dependent.Drop()
$deststore.conditions.Refresh()
}
$deststore.conditions[$conditionName].Drop()
}
catch
{
Write-Exception $_
continue
}
}
}
}
if ($Pscmdlet.ShouldProcess($destination, "Migrating condition $conditionName"))
{
try
{
$sql = $condition.ScriptCreate().GetScript() | Out-String
$sql = $sql -replace [Regex]::Escape("'$source'"), [Regex]::Escape("'$destination'")
Write-Verbose $sql
Write-Output "Copying condition $conditionName"
$null = $destserver.ConnectionContext.ExecuteNonQuery($sql)
$deststore.Conditions.Refresh()
}
catch
{
Write-Exception $_
}
}
}
<#
Policies
#>
Write-Output "Migrating policies"
foreach ($policy in $storepolicies)
{
$policyName = $policy.name
if ($deststore.policies[$policyName] -ne $null)
{
if ($force -eq $false)
{
Write-Warning "Policy '$policyName' was skipped because it already exists on $destination"
Write-Warning "Use -Force to drop and recreate"
continue
}
else
{
if ($Pscmdlet.ShouldProcess($destination, "Attempting to drop $policyName"))
{
Write-Verbose "Policy '$policyName' exists on $destination"
Write-Verbose "Force specified. Dropping $policyName."
try
{
$deststore.policies[$policyName].Drop()
$deststore.policies.refresh()
}
catch
{
Write-Exception $_
continue
}
}
}
}
if ($Pscmdlet.ShouldProcess($destination, "Migrating policy $policyName"))
{
try
{
$deststore.conditions.Refresh()
$deststore.policies.Refresh()
$sql = $policy.ScriptCreateWithDependencies().GetScript() | Out-String
$sql = $sql -replace [Regex]::Escape("'$source'"), [Regex]::Escape("'$destination'")
Write-Verbose $sql
Write-Output "Copying policy $policyName"
$null = $destserver.ConnectionContext.ExecuteNonQuery($sql)
}
catch
{
# This is usually because of a duplicate dependent from above. Just skip for now.
# Write-Exception $_
}
}
}
}
end
{
$sourceserver.ConnectionContext.Disconnect()
$destserver.ConnectionContext.Disconnect()
If ($Pscmdlet.ShouldProcess("console", "Showing finished message")) { Write-Output "Policy Management migration finished" }
}
}