functions/Copy-DbaLogin.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 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 |
function Copy-DbaLogin { <# .SYNOPSIS Migrates logins from source to destination SQL Servers. Supports SQL Server versions 2000 and newer. .DESCRIPTION SQL Server 2000: Migrates logins with SIDs, passwords, server roles and database roles. SQL Server 2005 & newer: Migrates logins with SIDs, passwords, defaultdb, server roles & securables, database permissions & securables, login attributes (enforce password policy, expiration, etc.) The login hash algorithm changed in SQL Server 2012, and is not backwards compatible with previous SQL Server versions. This means that while SQL Server 2000 logins can be migrated to SQL Server 2012, logins created in SQL Server 2012 can only be migrated to SQL Server 2012 and above. .PARAMETER Source Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher. .PARAMETER SourceSqlCredential Allows you to login to servers using SQL Logins instead of Windows Authentication (AKA Integrated or Trusted). To use: $scred = Get-Credential, then pass $scred object to the -SourceSqlCredential parameter. Windows Authentication will be used if SourceSqlCredential 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 Destination Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher. .PARAMETER DestinationSqlCredential Allows you to login to servers using SQL Logins instead of Windows Authentication (AKA Integrated or 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 Login The login(s) to process. Options for this list are auto-populated from the server. If unspecified, all logins will be processed. .PARAMETER ExcludeLogin The login(s) to exclude. Options for this list are auto-populated from the server. .PARAMETER SyncOnly If this switch is enabled, only SQL Server login permissions, roles, etc. will be synced. Logins and users will not be added or dropped. If a matching Login does not exist on the destination, the Login will be skipped. Credential removal is not currently supported for this parameter. .PARAMETER SyncSaName If this switch is enabled, the name of the sa account will be synced between Source and Destination .PARAMETER OutFile Calls Export-SqlLogin and exports all logins to a T-SQL formatted file. This does not perform a copy, so no destination is required. .PARAMETER PipeLogin Takes the parameters required from a Login object that has been piped into the command .PARAMETER LoginRenameHashtable Pass a hash table into this parameter to be passed into Rename-DbaLogin to update the Login and mappings after the Login is completed. .PARAMETER KillActiveConnection If this switch and -Force are enabled, all active connections and sessions on Destination will be killed. A login cannot be dropped when it has active connections on the instance. .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 Force If this switch is enabled, the Login(s) will be dropped and recreated on Destination. Logins that own Agent jobs cannot be dropped at this time. .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, Login Author: Chrissy LeMaire (@cl), netnerds.net Requires: sysadmin access on SQL Servers Website: https://dbatools.io Copyright: (C) Chrissy LeMaire, clemaire@gmail.com License: GNU GPL v3 https://opensource.org/licenses/GPL-3.0 .LINK https://dbatools.io/Copy-DbaLogin .EXAMPLE Copy-DbaLogin -Source sqlserver2014a -Destination sqlcluster -Force Copies all logins from Source Destination. If a SQL Login on Source exists on the Destination, the Login on Destination will be dropped and recreated. If active connections are found for a login, the copy of that Login will fail as it cannot be dropped. .EXAMPLE Copy-DbaLogin -Source sqlserver2014a -Destination sqlcluster -Force -KillActiveConnection Copies all logins from Source Destination. If a SQL Login on Source exists on the Destination, the Login on Destination will be dropped and recreated. If any active connections are found they will be killed. .EXAMPLE Copy-DbaLogin -Source sqlserver2014a -Destination sqlcluster -Exclude realcajun -SourceSqlCredential $scred -DestinationSqlCredential $dcred Copies all Logins from Source to Destination except for realcajun using SQL Authentication to connect to both instances. If a Login already exists on the destination, it will not be migrated. .EXAMPLE Copy-DbaLogin -Source sqlserver2014a -Destination sqlcluster -Login realcajun, netnerds -force Copies ONLY Logins netnerds and realcajun. If Login realcajun or netnerds exists on Destination, the existing Login(s) will be dropped and recreated. .EXAMPLE Copy-DbaLogin -Source sqlserver2014a -Destination sqlcluster -SyncOnly Syncs only SQL Server login permissions, roles, etc. Does not add or drop logins or users. If a matching Login does not exist on Destination, the Login will be skipped. .EXAMPLE Copy-DbaLogin -LoginRenameHashtable @{ "OldUser" ="newlogin" } -Source $Sql01 -Destination Localhost -SourceSqlCredential $sqlcred Copies OldUser and then renames it to newlogin. #> [CmdletBinding(DefaultParameterSetName = "Default", SupportsShouldProcess = $true)] Param ( [parameter(Mandatory = $true, ValueFromPipeline = $true)] [DbaInstanceParameter]$Source, [PSCredential] $SourceSqlCredential, [parameter(ParameterSetName = "Destination", Mandatory = $true)] [DbaInstanceParameter]$Destination, [PSCredential] $DestinationSqlCredential, [object[]]$Login, [object[]]$ExcludeLogin, [switch]$SyncOnly, [parameter(ParameterSetName = "Live")] [switch]$SyncSaName, [parameter(ParameterSetName = "File", Mandatory = $true)] [string]$OutFile, [object]$PipeLogin, [hashtable]$LoginRenameHashtable, [switch]$KillActiveConnection, [switch]$Force, [switch][Alias('Silent')]$EnableException ) begin { function Copy-Login { foreach ($sourceLogin in $sourceServer.Logins) { $userName = $sourceLogin.name $copyLoginStatus = [pscustomobject]@{ SourceServer = $sourceServer.Name DestinationServer = $destServer.Name Type = "Login - $($sourceLogin.LoginType)" Name = $userName DestinationLogin = $userName SourceLogin = $userName Status = $null Notes = $null DateTime = [DbaDateTime](Get-Date) } if ($Login -and $Login -notcontains $userName -or $ExcludeLogin -contains $userName) { continue } if ($sourceLogin.id -eq 1) { continue } if ($userName.StartsWith("##") -or $userName -eq 'sa') { Write-Message -Level Verbose -Message "Skipping $userName." continue } $serverName = Resolve-NetBiosName $sourceServer $currentLogin = $sourceServer.ConnectionContext.truelogin if ($currentLogin -eq $userName -and $force) { if ($Pscmdlet.ShouldProcess("console", "Stating $userName is skipped because it is performing the migration.")) { Write-Message -Level Verbose -Message "Cannot drop login performing the migration. Skipping." } $copyLoginStatus.Status = "Skipped" $copyLoginStatus.Notes = "Current login" $copyLoginStatus | Select-DefaultView -Property DateTime, SourceServer, DestinationServer, Name, Type, Status, Notes -TypeName MigrationObject continue } if (($destServer.LoginMode -ne [Microsoft.SqlServer.Management.Smo.ServerLoginMode]::Mixed) -and ($sourceLogin.LoginType -eq [Microsoft.SqlServer.Management.Smo.LoginType]::SqlLogin)) { Write-Message -Level Verbose -Message "$Destination does not have Mixed Mode enabled. [$userName] is an SQL Login. Enable mixed mode authentication after the migration completes to use this type of login." } $userBase = ($userName.Split("\")[0]).ToLower() if ($serverName -eq $userBase -or $userName.StartsWith("NT ")) { if ($sourceServer.NetName -ne $destServer.NetName) { if ($Pscmdlet.ShouldProcess("console", "Stating $userName was skipped because it is a local machine name.")) { Write-Message -Level Verbose -Message "$userName was skipped because it is a local machine name." } $copyLoginStatus.Status = "Skipped" $copyLoginStatus.Notes = "Local machine name" $copyLoginStatus | Select-DefaultView -Property DateTime, SourceServer, DestinationServer, Name, Type, Status, Notes -TypeName MigrationObject continue } else { if ($Pscmdlet.ShouldProcess("console", "Stating local login $userName since the source and destination server reside on the same machine.")) { Write-Message -Level Verbose -Message "Copying local login $userName since the source and destination server reside on the same machine." } } } if ($null -ne $destServer.Logins.Item($userName) -and !$force) { if ($Pscmdlet.ShouldProcess("console", "Stating $userName is skipped because it exists at destination.")) { Write-Message -Level Verbose -Message "$userName already exists in destination. Use -Force to drop and recreate." } $copyLoginStatus.Status = "Skipped" $copyLoginStatus.Notes = "Already exists" $copyLoginStatus | Select-DefaultView -Property DateTime, SourceServer, DestinationServer, Name, Type, Status, Notes -TypeName MigrationObject continue } if ($null -ne $destServer.Logins.Item($userName) -and $force) { if ($userName -eq $destServer.ServiceAccount) { Write-Message -Level Verbose -Message "$userName is the destination service account. Skipping drop." $copyLoginStatus.Status = "Skipped" $copyLoginStatus.Notes = "Destination service account" $copyLoginStatus | Select-DefaultView -Property DateTime, SourceServer, DestinationServer, Name, Type, Status, Notes -TypeName MigrationObject continue } if ($Pscmdlet.ShouldProcess($destination, "Dropping $userName")) { # Kill connections, delete user Write-Message -Level Verbose -Message "Attempting to migrate $userName" Write-Message -Level Verbose -Message "Force was specified. Attempting to drop $userName on $destination." try { $ownedDbs = $destServer.Databases | Where-Object Owner -eq $userName foreach ($ownedDb in $ownedDbs) { Write-Message -Level Verbose -Message "Changing database owner for $($ownedDb.name) from $userName to sa." $ownedDb.SetOwner('sa') $ownedDb.Alter() } $ownedJobs = $destServer.JobServer.Jobs | Where-Object OwnerLoginName -eq $userName foreach ($ownedJob in $ownedJobs) { Write-Message -Level Verbose -Message "Changing job owner for $($ownedJob.name) from $userName to sa." $ownedJob.Set_OwnerLoginName('sa') $ownedJob.Alter() } $activeConnections = $destServer.EnumProcesses() | Where-Object Login -eq $userName if ($activeConnections -and $KillActiveConnection) { if (!$destServer.Logins.Item($userName).IsDisabled) { $disabled = $true $destServer.Logins.Item($userName).Disable() } $activeConnections | ForEach-Object { $destServer.KillProcess($_.Spid)} Write-Message -Level Verbose -Message "-KillActiveConnection was provided. There are $($activeConnections.Count) active connections killed." # just in case the kill didn't work, it'll leave behind a disabled account if ($disabled) { $destServer.Logins.Item($userName).Enable() } } elseif ($activeConnections) { Write-Message -Level Verbose -Message "There are $($activeConnections.Count) active connections found for the login $userName. Utilize -KillActiveConnection with -Force to kill the connections." } $destServer.Logins.Item($userName).Drop() Write-Message -Level Verbose -Message "Successfully dropped $userName on $destination." } catch { $copyLoginStatus.Status = "Failed" $copyLoginStatus.Notes = $_.Exception.Message $copyLoginStatus | Select-DefaultView -Property DateTime, SourceServer, DestinationServer, Name, Type, Status, Notes -TypeName MigrationObject Stop-Function -Message "Could not drop $userName." -Category InvalidOperation -ErrorRecord $_ -Target $destServer -Continue 3>$null } } } if ($Pscmdlet.ShouldProcess($destination, "Adding SQL login $userName")) { Write-Message -Level Verbose -Message "Attempting to add $userName to $destination." $destLogin = New-Object Microsoft.SqlServer.Management.Smo.Login($destServer, $userName) Write-Message -Level Verbose -Message "Setting $userName SID to source username SID." $destLogin.Set_Sid($sourceLogin.Get_Sid()) $defaultDb = $sourceLogin.DefaultDatabase Write-Message -Level Verbose -Message "Setting login language to $($sourceLogin.Language)." $destLogin.Language = $sourceLogin.Language if ($null -eq $destServer.databases[$defaultDb]) { # we end up here when the default database on source doesn't exist on dest # if source login is a sysadmin, then set the default database to master # if not, set it to tempdb (see #303) $OrigdefaultDb = $defaultDb try { $sourcesysadmins = $sourceServer.roles['sysadmin'].EnumMemberNames() } catch { $sourcesysadmins = $sourceServer.roles['sysadmin'].EnumServerRoleMembers() } if ($sourcesysadmins -contains $userName) { $defaultDb = "master" } else { $defaultDb = "tempdb" } Write-Message -Level Verbose -Message "$OrigdefaultDb does not exist on destination. Setting defaultdb to $defaultDb." } Write-Message -Level Verbose -Message "Set $userName defaultdb to $defaultDb." $destLogin.DefaultDatabase = $defaultDb $checkexpiration = "ON"; $checkpolicy = "ON" if ($sourceLogin.PasswordPolicyEnforced -eq $false) { $checkpolicy = "OFF" } if (!$sourceLogin.PasswordExpirationEnabled) { $checkexpiration = "OFF" } $destLogin.PasswordPolicyEnforced = $sourceLogin.PasswordPolicyEnforced $destLogin.PasswordExpirationEnabled = $sourceLogin.PasswordExpirationEnabled # Attempt to add SQL Login User if ($sourceLogin.LoginType -eq "SqlLogin") { $destLogin.LoginType = "SqlLogin" $sourceLoginname = $sourceLogin.name switch ($sourceServer.versionMajor) { 0 { $sql = "SELECT CONVERT(VARBINARY(256),password) as hashedpass FROM master.dbo.syslogins WHERE loginname='$sourceLoginname'" } 8 { $sql = "SELECT CONVERT(VARBINARY(256),password) as hashedpass FROM dbo.syslogins WHERE name='$sourceLoginname'" } 9 { $sql = "SELECT CONVERT(VARBINARY(256),password_hash) as hashedpass FROM sys.sql_logins where name='$sourceLoginname'" } default { $sql = "SELECT CAST(CONVERT(VARCHAR(256), CAST(LOGINPROPERTY(name,'PasswordHash') AS VARBINARY(256)), 1) AS NVARCHAR(max)) AS hashedpass FROM sys.server_principals WHERE principal_id = $($sourceLogin.id)" } } try { $hashedPass = $sourceServer.ConnectionContext.ExecuteScalar($sql) } catch { $hashedPassDt = $sourceServer.Databases['master'].ExecuteWithResults($sql) $hashedPass = $hashedPassDt.Tables[0].Rows[0].Item(0) } if ($hashedPass.GetType().Name -ne "String") { $passString = "0x"; $hashedPass | ForEach-Object { $passString += ("{0:X}" -f $_).PadLeft(2, "0") } $hashedPass = $passString } try { $destLogin.Create($hashedPass, [Microsoft.SqlServer.Management.Smo.LoginCreateOptions]::IsHashed) $destLogin.Refresh() Write-Message -Level Verbose -Message "Successfully added $userName to $destination." $copyLoginStatus.Status = "Successful" $copyLoginStatus | Select-DefaultView -Property DateTime, SourceServer, DestinationServer, Name, Type, Status, Notes -TypeName MigrationObject } catch { try { $sid = "0x"; $sourceLogin.sid | ForEach-Object { $sid += ("{0:X}" -f $_).PadLeft(2, "0") } $sql = "CREATE LOGIN [$userName] WITH PASSWORD = $hashedPass HASHED, SID = $sid, DEFAULT_DATABASE = [$defaultDb], CHECK_POLICY = $checkpolicy, CHECK_EXPIRATION = $checkexpiration, DEFAULT_LANGUAGE = [$($sourceLogin.Language)]" $null = $destServer.Query($sql) $destLogin = $destServer.logins[$userName] Write-Message -Level Verbose -Message "Successfully added $userName to $destination." $copyLoginStatus.Status = "Successful" $copyLoginStatus | Select-DefaultView -Property DateTime, SourceServer, DestinationServer, Name, Type, Status, Notes -TypeName MigrationObject } catch { $copyLoginStatus.Status = "Failed" $copyLoginStatus.Notes = $_.Exception.Message $copyLoginStatus | Select-DefaultView -Property DateTime, SourceServer, DestinationServer, Name, Type, Status, Notes -TypeName MigrationObject Stop-Function -Message "Failed to add $userName to $destination." -Category InvalidOperation -ErrorRecord $_ -Target $destServer -Continue 3>$null } } } # Attempt to add Windows User elseif ($sourceLogin.LoginType -eq "WindowsUser" -or $sourceLogin.LoginType -eq "WindowsGroup") { Write-Message -Level Verbose -Message "Adding as login type $($sourceLogin.LoginType)" $destLogin.LoginType = $sourceLogin.LoginType Write-Message -Level Verbose -Message "Setting language as $($sourceLogin.Language)" $destLogin.Language = $sourceLogin.Language try { $destLogin.Create() $destLogin.Refresh() Write-Message -Level Verbose -Message "Successfully added $userName to $destination." $copyLoginStatus.Status = "Successful" $copyLoginStatus | Select-DefaultView -Property DateTime, SourceServer, DestinationServer, Name, Type, Status, Notes -TypeName MigrationObject } catch { $copyLoginStatus.Status = "Failed" $copyLoginStatus.Notes = $_.Exception.Message $copyLoginStatus | Select-DefaultView -Property DateTime, SourceServer, DestinationServer, Name, Type, Status, Notes -TypeName MigrationObject Stop-Function -Message "Failed to add $userName to $destination" -Category InvalidOperation -ErrorRecord $_ -Target $destServer -Continue 3>$null } } # This script does not currently support certificate mapped or asymmetric key users. else { Write-Message -Level Verbose -Message "$($sourceLogin.LoginType) logins not supported. $($sourceLogin.name) skipped." $copyLoginStatus.Status = "Skipped" $copyLoginStatus.Notes = "$($sourceLogin.LoginType) not supported" $copyLoginStatus | Select-DefaultView -Property DateTime, SourceServer, DestinationServer, Name, Type, Status, Notes -TypeName MigrationObject continue } if ($sourceLogin.IsDisabled) { try { $destLogin.Disable() } catch { $copyLoginStatus.Status = "Successful - but could not disable on destination" $copyLoginStatus.Notes = $_.Exception.Message $copyLoginStatus | Select-DefaultView -Property DateTime, SourceServer, DestinationServer, Name, Type, Status, Notes -TypeName MigrationObject Stop-Function -Message "$userName disabled on source, could not be disabled on $destination." -Category InvalidOperation -ErrorRecord $_ -Target $destServer 3>$null } } if ($sourceLogin.DenyWindowsLogin) { try { $destLogin.DenyWindowsLogin = $true } catch { $copyLoginStatus.Status = "Successful - but could not deny login on destination" $copyLoginStatus.Notes = $_.Exception.Message $copyLoginStatus | Select-DefaultView -Property DateTime, SourceServer, DestinationServer, Name, Type, Status, Notes -TypeName MigrationObject Stop-Function -Message "$userName denied login on source, could not be denied login on $destination." -Category InvalidOperation -ErrorRecord $_ -Target $destServer 3>$null } } } if ($Pscmdlet.ShouldProcess($destination, "Updating SQL login $userName permissions")) { Update-SqlPermissions -sourceserver $sourceServer -sourcelogin $sourceLogin -destserver $destServer -destlogin $destLogin } if ($LoginRenameHashtable.Keys -contains $userName) { $NewLogin = $LoginRenameHashtable[$userName] if ($Pscmdlet.ShouldProcess($destination, "Renaming SQL Login $userName to $NewLogin")) { try { Rename-DbaLogin -SqlInstance $destServer -Login $userName -NewLogin $NewLogin $copyLoginStatus.DestinationLogin = $NewLogin $copyLoginStatus.Status = "Successful" $copyLoginStatus | Select-DefaultView -Property DateTime, SourceServer, DestinationServer, Name, Type, Status, Notes -TypeName MigrationObject } catch { $copyLoginStatus.DestinationLogin = $NewLogin $copyLoginStatus.Status = "Failed to rename" $copyLoginStatus.Notes = $_.Exception.Message $copyLoginStatus | Select-DefaultView -Property DateTime, SourceServer, DestinationServer, Name, Type, Status, Notes -TypeName MigrationObject Stop-Function -Message "Issue renaming $userName to $NewLogin" -Category InvalidOperation -ErrorRecord $_ -Target $destServer 3>$null } } } } #end for each $sourceLogin } #end function Copy-Login Write-Message -Level Verbose -Message "Attempting to connect to SQL Servers." $sourceServer = Connect-SqlInstance -RegularUser -SqlInstance $Source -SqlCredential $SourceSqlCredential $source = $sourceServer.DomainInstanceName if ($Destination) { $destServer = Connect-SqlInstance -RegularUser -SqlInstance $Destination -SqlCredential $DestinationSqlCredential $Destination = $destServer.DomainInstanceName $sourceVersionMajor = $sourceServer.VersionMajor $destVersionMajor = $destServer.VersionMajor if ($sourceVersionMajor -gt 10 -and $destVersionMajor -lt 11) { Stop-Function -Message "Login migration from version $sourceVersionMajor to $destVersionMajor is not supported." -Category InvalidOperation -ErrorRecord $_ -Target $sourceServer } if ($sourceVersionMajor -lt 8 -or $destVersionMajor -lt 8) { Stop-Function -Message "SQL Server 7 and below are not supported." -Category InvalidOperation -InnerErrorRecord $_ -Target $sourceServer } } return $serverParms } process { if ($PipeLogin.Length -gt 0) { $Source = $PipeLogin[0].Parent.Name $Login = $PipeLogin.Name } if ($SyncOnly) { Sync-DbaSqlLoginPermission -Source $sourceServer -Destination $destServer -Login $Login -ExcludeLogin $ExcludeLogin return } if ($OutFile) { Export-DbaLogin -SqlInstance $sourceServer -FilePath $OutFile -Login $Login -ExcludeLogin $ExcludeLogin return } if ($Pscmdlet.ShouldProcess("console", "Showing migration attempt message")) { Write-Message -Level Verbose -Message "Attempting Login Migration." } Copy-Login -sourceserver $sourceServer -destserver $destServer -Login $Login -Exclude $ExcludeLogin -Force $force if ($SyncSaName) { $sa = $sourceServer.Logins | Where-Object id -eq 1 $destSa = $destServer.Logins | Where-Object id -eq 1 $saName = $sa.Name if ($saName -ne $destSa.name) { Write-Message -Level Verbose -Message "Changing sa username to match source ($saName)." if ($Pscmdlet.ShouldProcess($destination, "Changing sa username to match source ($saName)")) { $destSa.Rename($saName) $destSa.Alter() } } } } end { Test-DbaDeprecation -DeprecatedOn "1.0.0" -EnableException:$false -Alias Copy-SqlLogin } } |