forked from dataplat/dbatools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Add-DbaRegServer.ps1
235 lines (194 loc) · 10.8 KB
/
Add-DbaRegServer.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
function Add-DbaRegServer {
<#
.SYNOPSIS
Adds registered servers to SQL Server Central Management Server (CMS) or Local Server Groups
.DESCRIPTION
Adds registered servers to SQL Server Central Management Server (CMS) or Local Server Groups. If you need more flexibility, look into Import-DbaRegServer which
accepts multiple kinds of input and allows you to add reg servers from different CMSes.
.PARAMETER SqlInstance
The target SQL Server instance if a CMS is used
.PARAMETER SqlCredential
Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
For MFA support, please use Connect-DbaInstance.
.PARAMETER ServerName
Server Name is the actual SQL instance name (labeled Server Name)
.PARAMETER Name
Name is basically the nickname in SSMS Registered Server interface (labeled Registered Server Name)
.PARAMETER Description
Adds a description for the registered server
.PARAMETER Group
Adds the registered server to a specific group.
If group does not exist it will be created
.PARAMETER ActiveDirectoryTenant
Active Directory Tenant
.PARAMETER ActiveDirectoryUserId
Active Directory User id
.PARAMETER ConnectionString
SQL Server connection string
.PARAMETER OtherParams
Additional parameters to append to the connection string
.PARAMETER ServerObject
SMO Server Objects (from Connect-DbaInstance)
.PARAMETER InputObject
Allows the piping of a registered server group
.PARAMETER WhatIf
Shows what would happen if the command were to run. No actions are actually performed.
.PARAMETER Confirm
Prompts you for confirmation before executing any changing operations within the command.
.PARAMETER EnableException
By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.
.NOTES
Tags: RegisteredServer, CMS
Author: Chrissy LeMaire (@cl), netnerds.net
Website: https://dbatools.io
Copyright: (c) 2018 by dbatools, licensed under MIT
License: MIT https://opensource.org/licenses/MIT
.LINK
https://dbatools.io/Add-DbaRegServer
.EXAMPLE
PS C:\> Add-DbaRegServer -SqlInstance sql2008 -ServerName sql01
Creates a registered server on sql2008's CMS which points to the SQL Server, sql01. When scrolling in CMS, the name "sql01" will be visible.
.EXAMPLE
PS C:\> Add-DbaRegServer -ServerName sql01
Creates a registered server in Local Server Groups which points to the SQL Server, sql01. When scrolling in Registered Servers, the name "sql01" will be visible.
.EXAMPLE
PS C:\> Add-DbaRegServer -SqlInstance sql2008 -ServerName sql01 -Name "The 2008 Clustered Instance" -Description "HR's Dedicated SharePoint instance"
Creates a registered server on sql2008's CMS which points to the SQL Server, sql01. When scrolling in CMS, "The 2008 Clustered Instance" will be visible.
Clearly this is hard to explain ;)
.EXAMPLE
PS C:\> Add-DbaRegServer -SqlInstance sql2008 -ServerName sql01 -Group hr\Seattle
Creates a registered server on sql2008's CMS which points to the SQL Server, sql01. When scrolling in CMS, the name "sql01" will be visible within the Seattle group which is in the hr group.
.EXAMPLE
PS C:\> Connect-DbaInstance -SqlInstance dockersql1 -SqlCredential sqladmin | Add-DbaRegServer -ServerName mydockerjam
Creates a registered server called "mydockerjam" in Local Server Groups that uses SQL authentication and points to the server dockersql1.
#>
[CmdletBinding(SupportsShouldProcess)]
param (
[DbaInstanceParameter[]]$SqlInstance,
[PSCredential]$SqlCredential,
[string]$ServerName,
[string]$Name = $ServerName,
[string]$Description,
[object]$Group,
[string]$ActiveDirectoryTenant,
[string]$ActiveDirectoryUserId,
[string]$ConnectionString,
[string]$OtherParams,
[parameter(ValueFromPipeline)]
[Microsoft.SqlServer.Management.RegisteredServers.ServerGroup[]]$InputObject,
[parameter(ValueFromPipeline)]
[Microsoft.SqlServer.Management.Smo.Server[]]$ServerObject,
[switch]$EnableException
)
process {
# double check in case a null name was bound
if (-not $PSBoundParameters.ServerName -and -not $PSBoundParameters.ServerObject) {
Stop-Function -Message "You must specify either ServerName or ServerObject"
return
}
if (-not $Name) {
$Name = $ServerName
}
if ((-not $SqlInstance -and -not $InputObject) -or $ServerObject) {
Write-Message -Level Verbose -Message "Parsing local"
if (($Group)) {
if ($Group -is [Microsoft.SqlServer.Management.RegisteredServers.ServerGroup]) {
$regServerGroup = Get-DbaRegServerGroup -Group $Group.Name
} else {
Write-Message -Level Verbose -Message "String group provided"
$regServerGroup = Get-DbaRegServerGroup -Group $Group
}
if ($regServerGroup) {
$InputObject += $regServerGroup
} else {
# Create the Group
if ($Group -is [Microsoft.SqlServer.Management.RegisteredServers.ServerGroup]) {
$InputObject += Add-DbaRegServerGroup -Name $Group.Name
} else {
Write-Message -Level Verbose -Message "String group provided"
$InputObject += Add-DbaRegServerGroup -Name $Group
}
}
} else {
Write-Message -Level Verbose -Message "No group passed, getting root"
$InputObject += Get-DbaRegServerGroup -Id 1
}
}
foreach ($instance in $SqlInstance) {
if (($Group)) {
if ($Group -is [Microsoft.SqlServer.Management.RegisteredServers.ServerGroup]) {
$regServerGroup = Get-DbaRegServerGroup -SqlInstance $instance -SqlCredential $SqlCredential -Group $Group.Name
} else {
$regServerGroup = Get-DbaRegServerGroup -SqlInstance $instance -SqlCredential $SqlCredential -Group $Group
}
if ($regServerGroup) {
$InputObject += $regServerGroup
} else {
if ($Group -is [Microsoft.SqlServer.Management.RegisteredServers.ServerGroup]) {
$InputObject += Add-DbaRegServerGroup -SqlInstance $instance -SqlCredential $SqlCredential -Name $Group.Name
} else {
Write-Message -Level Verbose -Message "String group provided"
$InputObject += Add-DbaRegServerGroup -SqlInstance $instance -SqlCredential $SqlCredential -Name $Group
}
}
} else {
$InputObject += Get-DbaRegServerGroup -SqlInstance $instance -SqlCredential $SqlCredential -Id 1
}
}
foreach ($reggroup in $InputObject) {
if ($reggroup.Source -eq "Azure Data Studio") {
Stop-Function -Message "You cannot use dbatools to remove or add registered servers in Azure Data Studio" -Continue
}
Write-Message -Level Verbose -Message "ID: $($reggroup.ID))"
if ($reggroup.ID) {
$target = $reggroup.ParentServer.SqlInstance
} else {
$target = "Local Registered Servers"
}
if ($Pscmdlet.ShouldProcess($target, "Adding $name")) {
if ($ServerObject) {
foreach ($server in $ServerObject) {
if (-not $PSBoundParameters.Name) {
$Name = $server.Name
}
if (-not $PSBoundParameters.ServerName) {
$ServerName = $server.Name
}
try {
$newserver = New-Object Microsoft.SqlServer.Management.RegisteredServers.RegisteredServer($reggroup, $Name)
$newserver.ServerName = $ServerName
$newserver.Description = $Description
$newserver.ConnectionString = $server.ConnectionContext.ConnectionString
$newserver.SecureConnectionString = $server.ConnectionContext.SecureConnectionString
$newserver.ActiveDirectoryTenant = $ActiveDirectoryTenant
$newserver.ActiveDirectoryUserId = $ActiveDirectoryUserId
$newserver.OtherParams = $OtherParams
$newserver.CredentialPersistenceType = "PersistLoginNameAndPassword"
$newserver.Create()
Get-DbaRegServer -SqlInstance $reggroup.ParentServer -Name $Name -ServerName $ServerName | Where-Object Source -ne 'Azure Data Studio'
} catch {
Stop-Function -Message "Failed to add $ServerName on $target" -ErrorRecord $_ -Continue
}
}
} else {
try {
$newserver = New-Object Microsoft.SqlServer.Management.RegisteredServers.RegisteredServer($reggroup, $Name)
$newserver.ServerName = $ServerName
$newserver.Description = $Description
$newserver.ConnectionString = $ConnectionString
$newserver.ActiveDirectoryTenant = $ActiveDirectoryTenant
$newserver.ActiveDirectoryUserId = $ActiveDirectoryUserId
$newserver.OtherParams = $OtherParams
$newserver.Create()
Get-DbaRegServer -SqlInstance $reggroup.ParentServer -Name $Name -ServerName $ServerName | Where-Object Source -ne 'Azure Data Studio'
} catch {
Stop-Function -Message "Failed to add $ServerName on $target" -ErrorRecord $_ -Continue
}
}
}
}
}
}