functions/Copy-DbaCentralManagementServer.ps1
function Copy-DbaCentralManagementServer { <# .SYNOPSIS Migrates SQL Server Central Management groups and server instances from one SQL Server to another. .DESCRIPTION Copy-DbaCentralManagementServer copies all groups, subgroups, and server instances from one SQL Server to another. .PARAMETER Source Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher. .PARAMETER SourceSqlCredential Login to the target instance using alternative credentials. Windows and SQL Authentication supported. Accepts credential objects (Get-Credential) .PARAMETER Destination Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher. .PARAMETER DestinationSqlCredential Login to the target instance using alternative credentials. Windows and SQL Authentication supported. Accepts credential objects (Get-Credential) .PARAMETER CMSGroup This is an auto-populated array that contains your Central Management Server top-level groups on Source. You can specify one, many or none. If CMSGroup is not specified, all groups in your Central Management Server will be copied. .PARAMETER SwitchServerName If this switch is enabled, all instance names will be changed from Source to Destination. Central Management Server does not allow you to add a shared registered server with the same name as the Configuration Server. .PARAMETER Force If this switch is enabled, group(s) will be dropped and recreated if they already exists on destination. .PARAMETER WhatIf If this switch is enabled, no actions are performed but informational messages will be displayed that explain what would happen if the command were to run. .PARAMETER Confirm If this switch is enabled, you will be prompted for confirmation before executing any operations that change state. .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: Migration Author: Chrissy LeMaire (@cl), netnerds.net Requires: sysadmin access on SQL Servers Website: https://dbatools.io Copyright: (C) Chrissy LeMaire, clemaire@gmail.com License: MIT https://opensource.org/licenses/MIT .LINK https://dbatools.io/Copy-DbaCentralManagementServer .EXAMPLE Copy-DbaCentralManagementServer -Source sqlserver2014a -Destination sqlcluster All groups, subgroups, and server instances are copied from sqlserver's Central Management Server to sqlcluster's Central Management Server. .EXAMPLE Copy-DbaCentralManagementServer -Source sqlserver2014a -Destination sqlcluster -ServerGroup Group1,Group3 Top-level groups Group1 and Group3 along with their subgroups and server instances are copied from sqlserver to sqlcluster. .EXAMPLE Copy-DbaCentralManagementServer -Source sqlserver2014a -Destination sqlcluster -ServerGroup Group1,Group3 -SwitchServerName -SourceSqlCredential $SourceSqlCredential -DestinationSqlCredential $DestinationSqlCredential Top-level groups Group1 and Group3 along with their subgroups and server instances are copied from sqlserver to sqlcluster. When adding sql instances to sqlcluster, if the server name of the migrating instance is "sqlcluster", it will be switched to "sqlserver". If SwitchServerName is not specified, "sqlcluster" will be skipped. #> [CmdletBinding(DefaultParameterSetName = "Default", SupportsShouldProcess = $true)] Param ( [parameter(Mandatory = $true)] [DbaInstanceParameter]$Source, [PSCredential] $SourceSqlCredential, [parameter(Mandatory = $true)] [DbaInstanceParameter]$Destination, [PSCredential] $DestinationSqlCredential, [object[]]$CMSGroup, [switch]$SwitchServerName, [switch]$Force, [Alias('Silent')] [switch]$EnableException ) begin { function Invoke-ParseServerGroup { [cmdletbinding()] param ( $sourceGroup, $destinationGroup, $SwitchServerName ) if ($destinationGroup.Name -eq "DatabaseEngineServerGroup" -and $sourceGroup.Name -ne "DatabaseEngineServerGroup") { $currentServerGroup = $destinationGroup $groupName = $sourceGroup.Name $destinationGroup = $destinationGroup.ServerGroups[$groupName] $copyDestinationGroupStatus = [pscustomobject]@{ SourceServer = $sourceServer.Name DestinationServer = $destServer.Name Name = $groupName Type = "CMS Destination Group" Status = $null Notes = $null DateTime = [Sqlcollaborative.Dbatools.Utility.DbaDateTime](Get-Date) } if ($null -ne $destinationGroup) { if ($force -eq $false) { $copyDestinationGroupStatus.Status = "Skipped" $copyDestinationGroupStatus.Notes = "Already exists" $copyDestinationGroupStatus | Select-DefaultView -Property DateTime, SourceServer, DestinationServer, Name, Type, Status, Notes -TypeName MigrationObject Write-Message -Level Verbose -Message "Destination group $groupName exists at destination. Use -Force to drop and migrate." continue } if ($Pscmdlet.ShouldProcess($destination, "Dropping group $groupName")) { try { Write-Message -Level Verbose -Message "Dropping group $groupName" $destinationGroup.Drop() } catch { $copyDestinationGroupStatus.Status = "Failed" $copyDestinationGroupStatus | Select-DefaultView -Property DateTime, SourceServer, DestinationServer, Name, Type, Status, Notes -TypeName MigrationObject Stop-Function -Message "Issue dropping group" -Target $groupName -InnerErrorRecord $_ -Continue } } } if ($Pscmdlet.ShouldProcess($destination, "Creating group $groupName")) { Write-Message -Level Verbose -Message "Creating group $($sourceGroup.Name)" $destinationGroup = New-Object Microsoft.SqlServer.Management.RegisteredServers.ServerGroup($currentServerGroup, $sourceGroup.Name) $destinationGroup.Create() $copyDestinationGroupStatus.Status = "Successful" $copyDestinationGroupStatus | Select-DefaultView -Property DateTime, SourceServer, DestinationServer, Name, Type, Status, Notes -TypeName MigrationObject } } # Add Servers foreach ($instance in $sourceGroup.RegisteredServers) { $instanceName = $instance.Name $serverName = $instance.ServerName $copyInstanceStatus = [pscustomobject]@{ SourceServer = $sourceServer.Name DestinationServer = $destServer.Name Name = $instanceName Type = "CMS Instance" Status = $null Notes = $null DateTime = [Sqlcollaborative.Dbatools.Utility.DbaDateTime](Get-Date) } if ($serverName.ToLower() -eq $toCmStore.DomainInstanceName.ToLower()) { if ($SwitchServerName) { $serverName = $fromCmStore.DomainInstanceName $instanceName = $fromCmStore.DomainInstanceName Write-Message -Level Verbose -Message "SwitchServerName was used and new CMS equals current server name. $($toCmStore.DomainInstanceName.ToLower()) changed to $serverName." } else { $copyInstanceStatus.Status = "Skipped" $copyInstanceStatus | Select-DefaultView -Property DateTime, SourceServer, DestinationServer, Name, Type, Status, Notes -TypeName MigrationObject Write-Message -Level Verbose -Message "$serverName is Central Management Server. Add prohibited. Skipping." continue } } if ($destinationGroup.RegisteredServers.Name -contains $instanceName) { if ($force -eq $false) { $copyInstanceStatus.Status = "Skipped" $copyInstanceStatus.Notes = "Already exists" $copyInstanceStatus | Select-DefaultView -Property DateTime, SourceServer, DestinationServer, Name, Type, Status, Notes -TypeName MigrationObject Write-Message -Level Verbose -Message "Instance $instanceName exists in group $groupName at destination. Use -Force to drop and migrate." continue } if ($Pscmdlet.ShouldProcess($destination, "Dropping instance $instanceName from $groupName and recreating")) { try { Write-Message -Level Verbose -Message "Dropping instance $instance from $groupName" $destinationGroup.RegisteredServers[$instanceName].Drop() } catch { $copyInstanceStatus.Status = "Failed" $copyInstanceStatus | Select-DefaultView -Property DateTime, SourceServer, DestinationServer, Name, Type, Status, Notes -TypeName MigrationObject Stop-Function -Message "Issue dropping instance from group" -Target $instanceName -InnerErrorRecord $_ -Continue } } } if ($Pscmdlet.ShouldProcess($destination, "Copying $instanceName")) { $newServer = New-Object Microsoft.SqlServer.Management.RegisteredServers.RegisteredServer($destinationGroup, $instanceName) $newServer.ServerName = $serverName $newServer.Description = $instance.Description if ($serverName -ne $fromCmStore.DomainInstanceName) { $newServer.SecureConnectionString = $instance.SecureConnectionString.ToString() $newServer.ConnectionString = $instance.ConnectionString.ToString() } try { $newServer.Create() $copyInstanceStatus.Status = "Successful" $copyInstanceStatus | Select-DefaultView -Property DateTime, SourceServer, DestinationServer, Name, Type, Status, Notes -TypeName MigrationObject } catch { $copyInstanceStatus.Status = "Failed" $copyInstanceStatus | Select-DefaultView -Property DateTime, SourceServer, DestinationServer, Name, Type, Status, Notes -TypeName MigrationObject if ($_.Exception -match "same name") { Stop-Function -Message "Could not add Switched Server instance name." -Target $instanceName -InnerErrorRecord $_ -Continue } else { Stop-Function -Message "Failed to add $serverName" -Target $instanceName -InnerErrorRecord $_ -Continue } } Write-Message -Level Verbose -Message "Added Server $serverName as $instanceName to $($destinationGroup.Name)" } } # Add Groups foreach ($fromSubGroup in $sourceGroup.ServerGroups) { $fromSubGroupName = $fromSubGroup.Name $toSubGroup = $destinationGroup.ServerGroups[$fromSubGroupName] $copyGroupStatus = [pscustomobject]@{ SourceServer = $sourceServer.Name DestinationServer = $destServer.Name Name = $fromSubGroupName Type = "CMS Group" Status = $null Notes = $null DateTime = [Sqlcollaborative.Dbatools.Utility.DbaDateTime](Get-Date) } if ($null -ne $toSubGroup) { if ($force -eq $false) { $copyGroupStatus.Status = "Skipped" $copyGroupStatus.Notes = "Already exists" $copyGroupStatus | Select-DefaultView -Property DateTime, SourceServer, DestinationServer, Name, Type, Status, Notes -TypeName MigrationObject Write-Message -Level Verbose -Message "Subgroup $fromSubGroupName exists at destination. Use -Force to drop and migrate." continue } if ($Pscmdlet.ShouldProcess($destination, "Dropping subgroup $fromSubGroupName recreating")) { try { Write-Message -Level Verbose -Message "Dropping subgroup $fromSubGroupName" $toSubGroup.Drop() } catch { $copyGroupStatus.Status = "Failed" $copyGroupStatus | Select-DefaultView -Property DateTime, SourceServer, DestinationServer, Name, Type, Status, Notes -TypeName MigrationObject Stop-Function -Message "Issue dropping subgroup" -Target $toSubGroup -InnerErrorRecord $_ -Continue } } } if ($Pscmdlet.ShouldProcess($destination, "Creating group $($fromSubGroup.Name)")) { Write-Message -Level Verbose -Message "Creating group $($fromSubGroup.Name)" $toSubGroup = New-Object Microsoft.SqlServer.Management.RegisteredServers.ServerGroup($destinationGroup, $fromSubGroup.Name) $toSubGroup.create() $copyGroupStatus.Status = "Successful" $copyGroupStatus | Select-DefaultView -Property DateTime, SourceServer, DestinationServer, Name, Type, Status, Notes -TypeName MigrationObject } Invoke-ParseServerGroup -sourceGroup $fromSubGroup -destinationgroup $toSubGroup -SwitchServerName $SwitchServerName } } $sourceServer = Connect-SqlInstance -SqlInstance $Source -SqlCredential $SourceSqlCredential $destServer = Connect-SqlInstance -SqlInstance $Destination -SqlCredential $DestinationSqlCredential $source = $sourceServer.DomainInstanceName $destination = $destServer.DomainInstanceName if ($sourceServer.VersionMajor -lt 10 -or $destServer.VersionMajor -lt 10) { throw "Central Management Server is only supported in SQL Server 2008 and newer. Quitting." } } process { Write-Message -Level Verbose -Message "Connecting to Central Management Servers" try { $fromCmStore = New-Object Microsoft.SqlServer.Management.RegisteredServers.RegisteredServersStore($sourceServer.ConnectionContext.SqlConnectionObject) $toCmStore = New-Object Microsoft.SqlServer.Management.RegisteredServers.RegisteredServersStore($destServer.ConnectionContext.SqlConnectionObject) } catch { throw "Cannot access Central Management Servers" } $stores = $fromCmStore.DatabaseEngineServerGroup if ($CMSGroup) { $stores = @(); foreach ($groupName in $CMSGroup) { $stores += $fromCmStore.DatabaseEngineServerGroup.ServerGroups[$groupName] } } foreach ($store in $stores) { Invoke-ParseServerGroup -sourceGroup $store -destinationgroup $toCmStore.DatabaseEngineServerGroup -SwitchServerName $SwitchServerName } } end { Test-DbaDeprecation -DeprecatedOn "1.0.0" -EnableException:$false -Alias Copy-SqlCentralManagementServer } } |