functions/Remove-DbaSpn.ps1
#ValidationTags#FlowControl,Pipeline# Function Remove-DbaSpn { <# .SYNOPSIS Removes an SPN for a given service account in active directory and also removes delegation to the same SPN, if found .DESCRIPTION This function will connect to Active Directory and search for an account. If the account is found, it will attempt to remove the specified SPN. Once the SPN is removed, the function will also remove delegation to that service. In order to run this function, the credential you provide must have write access to Active Directory. Note: This function supports -WhatIf .PARAMETER SPN The SPN you want to remove .PARAMETER ServiceAccount The account you want the SPN remove from .PARAMETER Credential The credential you want to use to connect to Active Directory to make the changes .PARAMETER Silent Use this switch to disable any kind of verbose messages .PARAMETER Confirm Turns confirmations before changes on or off .PARAMETER WhatIf Shows what would happen if the command was executed .NOTES Tags: SPN Author: Drew Furgiuele (@pittfurg), http://www.port1433.com dbatools PowerShell module (https://dbatools.io) 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/Remove-DbaSpn .EXAMPLE Remove-DbaSpn -SPN MSSQLSvc\SQLSERVERA.domain.something -ServiceAccount domain\account Connects to Active Directory and removes a provided SPN from the given account (and also the relative delegation) .EXAMPLE Remove-DbaSpn -SPN MSSQLSvc\SQLSERVERA.domain.something -ServiceAccount domain\account -Silent Connects to Active Directory and removes a provided SPN from the given account, suppressing all error messages and throw exceptions that can be caught instead .EXAMPLE Remove-DbaSpn -SPN MSSQLSvc\SQLSERVERA.domain.something -ServiceAccount domain\account -Credential (Get-Credential) Connects to Active Directory and removes a provided SPN to the given account. Uses alternative account to connect to AD. .EXAMPLE Test-DbaSpn -ComputerName sql2005 | Where { $_.isSet -eq $true } | Remove-DbaSpn -WhatIf Shows what would happen trying to remove all set SPNs for sql2005 and the relative delegations .EXAMPLE Test-DbaSpn -ComputerName sql2005 | Where { $_.isSet -eq $true } | Remove-DbaSpn Removes all set SPNs for sql2005 and the relative delegations #> [cmdletbinding(SupportsShouldProcess = $true, DefaultParameterSetName = "Default")] param ( [Parameter(Mandatory = $true, ValueFromPipelineByPropertyName)] [Alias("RequiredSPN")] [string]$SPN, [Parameter(Mandatory = $true, ValueFromPipelineByPropertyName)] [Alias("InstanceServiceAccount", "AccountName")] [string]$ServiceAccount, [Parameter(Mandatory = $false, ValueFromPipelineByPropertyName)] [PSCredential]$Credential, [switch]$Silent ) process { Write-Message -Message "Looking for account $ServiceAccount..." -Level Verbose $searchfor = 'User' if($ServiceAccount.EndsWith('$')) { $searchfor = 'Computer' } try { $Result = Get-DbaADObject -ADObject $ServiceAccount -Type $searchfor -Credential $Credential -Silent } catch { Stop-Function -Message "AD lookup failure. This may be because the domain cannot be resolved for the SQL Server service account ($ServiceAccount). $($_.Exception.Message)" -Silent $Silent -InnerErrorRecord $_ -Target $ServiceAccount } if ($Result.Count -gt 0) { try { $adentry = $Result.GetUnderlyingObject() } catch { Stop-Function -Message "The SQL Service account ($ServiceAccount) has been found, but you don't have enough permission to inspect its properties $($_.Exception.Message)" -Silent $Silent -InnerErrorRecord $_ -Target $ServiceAccount } } else { Stop-Function -Message "The SQL Service account ($ServiceAccount) has not been found" -Silent $Silent -Target $ServiceAccount } # Cool! Remove an SPN $delegate = $true $spnadobject = $adentry.Properties['servicePrincipalName'] if ($spnadobject -notcontains $spn) { Write-Message -Level Warning -Message "SPN $SPN not found" $status = "SPN not found" $set = $false } if ($PSCmdlet.ShouldProcess("$spn", "Removing SPN for service account")) { try { if ($spnadobject -contains $spn) { $null = $spnadobject.Remove($spn) $adentry.CommitChanges() Write-Message -Message "Remove SPN $spn for $serviceaccount" -Level Verbose $set = $false $status = "Successfully removed SPN" } } catch { Write-Message -Message "Could not remove SPN. $($_.Exception.Message)" -Level Warning -Silent $Silent -ErrorRecord $_ -Target $ServiceAccountWrite $set = $true $status = "Failed to remove SPN" $delegate = $false } [pscustomobject]@{ Name = $spn ServiceAccount = $ServiceAccount Property = "servicePrincipalName" IsSet = $set Notes = $status } } # if we removed the SPN, we should clean up also the delegation if ($PSCmdlet.ShouldProcess("$spn", "Removing delegation for service account for SPN")) { # if we didn't remove the SPN we shouldn't do anything if ($delegate) { # even if we removed the SPN, delegation could have been not set at all. We should not raise an error if ($adentry.Properties['msDS-AllowedToDelegateTo'] -notcontains $spn) { [pscustomobject]@{ Name = $spn ServiceAccount = $ServiceAccount Property = "msDS-AllowedToDelegateTo" IsSet = $false Notes = "Delegation not found" } } else { # we indeed need the cleanup try { $null = $adentry.Properties['msDS-AllowedToDelegateTo'].Remove($spn) $adentry.CommitChanges() Write-Message -Message "Removed kerberos delegation $spn for $ServiceAccount" -Level Verbose $set = $false $status = "Successfully removed delegation" } catch { Write-Message -Message "Could not remove delegation. $($_.Exception.Message)" -Level Warning -Silent $Silent -ErrorRecord $_ -Target $ServiceAccount $set = $true $status = "Failed to remove delegation" } [pscustomobject]@{ Name = $spn ServiceAccount = $ServiceAccount Property = "msDS-AllowedToDelegateTo" IsSet = $set Notes = $status } } } } } } |