functions/Repair-DbaOrphanUser.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 Repair-DbaOrphanUser { <# .SYNOPSIS Find orphan users with existing login and remap. .DESCRIPTION An orphan user is defined by a user that does not have their matching login. (Login property = "") If the matching login exists it must be: Enabled Not a system object Not locked Have the same name that user You can drop users that does not have their matching login by specifying the parameter -RemoveNotExisting This will be made by calling Remove-DbaOrphanUser function. .PARAMETER SqlInstance The SQL Server instance. .PARAMETER SqlCredential 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 -SqlCredential parameter. Windows Authentication will be used if SqlCredential 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 Database The database(s) to process - this list is auto-populated from the server. If unspecified, all databases will be processed. .PARAMETER Users List of users to repair .PARAMETER RemoveNotExisting If passed, all users that not have their matching login will be dropped from database .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 Silent Use this switch to disable any kind of verbose messages .EXAMPLE Repair-DbaOrphanUser -SqlInstance sql2005 Will find and repair all orphan users of all databases present on server 'sql2005' .EXAMPLE Repair-DbaOrphanUser -SqlInstance sqlserver2014a -SqlCredential $cred Will find and repair all orphan users of all databases present on server 'sqlserver2014a'. Will be verified using SQL credentials. .EXAMPLE Repair-DbaOrphanUser -SqlInstance sqlserver2014a -Database db1, db2 Will find and repair all orphan users on both db1 and db2 databases .EXAMPLE Repair-DbaOrphanUser -SqlInstance sqlserver2014a -Database db1 -Users OrphanUser Will find and repair user 'OrphanUser' on 'db1' database .EXAMPLE Repair-DbaOrphanUser -SqlInstance sqlserver2014a -Users OrphanUser Will find and repair user 'OrphanUser' on all databases .EXAMPLE Repair-DbaOrphanUser -SqlInstance sqlserver2014a -RemoveNotExisting Will find all orphan users of all databases present on server 'sqlserver2014a' Will also remove all users that does not have their matching login by calling Remove-DbaOrphanUser function .NOTES Tags: Orphan Original Author: Claudio Silva (@ClaudioESSilva) 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/Repair-DbaOrphanUser #> [CmdletBinding(SupportsShouldProcess = $true)] Param ( [parameter(Mandatory = $true, ValueFromPipeline = $true)] [Alias("ServerInstance", "SqlServer")] [DbaInstanceParameter[]]$SqlInstance, [PSCredential]$SqlCredential, [Alias("Databases")] [object[]]$Database, [parameter(Mandatory = $false, ValueFromPipeline = $true)] [object[]]$Users, [switch]$RemoveNotExisting, [switch]$Silent ) process { $start = [System.Diagnostics.Stopwatch]::StartNew() foreach ($instance in $SqlInstance) { try { Write-Message -Level Verbose -Message "Connecting to $instance" $server = Connect-SqlInstance -SqlInstance $instance -SqlCredential $SqlCredential } catch { Write-Message -Level Warning -Message "Failed to connect to: $SqlInstance" continue } if ($Database.Count -eq 0) { $DatabaseCollection = $server.Databases | Where-Object { $_.IsSystemObject -eq $false -and $_.IsAccessible -eq $true } } else { if ($pipedatabase.Length -gt 0) { $Source = $pipedatabase[0].parent.name $DatabaseCollection = $pipedatabase.name } else { $DatabaseCollection = $server.Databases | Where-Object { $_.IsSystemObject -eq $false -and $_.IsAccessible -eq $true -and ($Database -contains $_.Name) } } } if ($DatabaseCollection.Count -gt 0) { foreach ($db in $DatabaseCollection) { try { #if SQL 2012 or higher only validate databases with ContainmentType = NONE if ($server.versionMajor -gt 10) { if ($db.ContainmentType -ne [Microsoft.SqlServer.Management.Smo.ContainmentType]::None) { Write-Message -Level Warning -Message "Database '$db' is a contained database. Contained databases can't have orphaned users. Skipping validation." Continue } } Write-Message -Level Verbose -Message "Validating users on database '$db'" if ($Users.Count -eq 0) { #the third validation will remove from list sql users without login. The rule here is Sid with length higher than 16 $Users = $db.Users | Where-Object { $_.Login -eq "" -and ($_.ID -gt 4) -and ($_.Sid.Length -gt 16 -and $_.LoginType -eq [Microsoft.SqlServer.Management.Smo.LoginType]::SqlLogin) -eq $false } } else { if ($pipedatabase.Length -gt 0) { $Source = $pipedatabase[3].parent.name $Users = $pipedatabase.name } else { #the fourth validation will remove from list sql users without login. The rule here is Sid with length higher than 16 $Users = $db.Users | Where-Object { $_.Login -eq "" -and ($_.ID -gt 4) -and ($Users -contains $_.Name) -and (($_.Sid.Length -gt 16 -and $_.LoginType -eq [Microsoft.SqlServer.Management.Smo.LoginType]::SqlLogin) -eq $false) } } } if ($Users.Count -gt 0) { Write-Message -Level Verbose -Message "Orphan users found" $UsersToRemove = @() foreach ($User in $Users) { $ExistLogin = $server.logins | Where-Object { $_.Isdisabled -eq $False -and $_.IsSystemObject -eq $False -and $_.IsLocked -eq $False -and $_.Name -eq $User.Name } if ($ExistLogin) { if ($server.versionMajor -gt 8) { $query = "ALTER USER " + $User + " WITH LOGIN = " + $User } else { $query = "exec sp_change_users_login 'update_one', '$User'" } if ($Pscmdlet.ShouldProcess($db.Name, "Mapping user '$($User.Name)'")) { $server.Databases[$db.Name].ExecuteNonQuery($query) | Out-Null Write-Message -Level Verbose -Message "`r`nUser '$($User.Name)' mapped with their login" [PSCustomObject]@{ SqlInstance = $server.name DatabaseName = $db.Name User = $User.Name Status = "Success" } } } else { if ($RemoveNotExisting -eq $true) { #add user to collection $UsersToRemove += $User } else { Write-Message -Level Verbose -Message "Orphan user $($User.Name) does not have matching login." [PSCustomObject]@{ SqlInstance = $server.name DatabaseName = $db.Name User = $User.Name Status = "No matching login" } } } } #With the colelction complete invoke remove. if ($RemoveNotExisting -eq $true) { if ($Pscmdlet.ShouldProcess($db.Name, "Remove-DbaOrphanUser")) { Write-Message -Level Verbose -Message "Calling 'Remove-DbaOrphanUser'" Remove-DbaOrphanUser -SqlInstance $sqlinstance -SqlCredential $SqlCredential -Database $db.Name -Users $UsersToRemove } } } else { Write-Message -Level Verbose -Message "No orphan users found on database '$db'" } #reset collection $Users = $null } catch { Stop-Function -Message $_ -Continue } } } else { Write-Message -Level Verbose -Message "There are no databases to analyse." } } } end { $totaltime = ($start.Elapsed) Write-Message -Level Verbose -Message "Total Elapsed time: $totaltime" Test-DbaDeprecation -DeprecatedOn "1.0.0" -Silent:$false -Alias Repair-SqlOrphanUser } } |