functions/Remove-DbaDatabaseCertificate.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 |
function Remove-DbaDatabaseCertificate { <# .SYNOPSIS Deletes specified database certificate .DESCRIPTION Deletes specified database certificate .PARAMETER SqlInstance The SQL Server to create the certificates on. .PARAMETER SqlCredential Allows you to login to SQL Server using alternative credentials. .PARAMETER Database The database where the certificate will be removed. .PARAMETER Certificate The certificate that will be removed .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 .PARAMETER CertificateCollection Internal parameter to support pipeline input .NOTES Tags: Certificate Website: https://dbatools.io Copyright: (C) Chrissy LeMaire, clemaire@gmail.com License: GNU GPL v3 https://opensource.org/licenses/GPL-3.0 .EXAMPLE Remove-DbaDatabaseCertificate -SqlInstance Server1 The certificate in the master database on server1 will be removed if it exists. .EXAMPLE Remove-DbaDatabaseCertificate -SqlInstance Server1 -Database db1 -Confirm:$false Suppresses all prompts to remove the certificate in the 'db1' database and drops the key. #> [CmdletBinding(DefaultParameterSetName = "Default", SupportsShouldProcess = $true, ConfirmImpact = "High")] param ( [parameter(Mandatory, ParameterSetName = "instance")] [Alias("ServerInstance", "SqlServer")] [DbaInstanceParameter[]]$SqlInstance, [PSCredential]$SqlCredential, [parameter(Mandatory, ParameterSetName = "instance")] [object[]]$Database, [parameter(Mandatory, ParameterSetName = "instance")] [object[]]$Certificate, [parameter(ValueFromPipeline, ParameterSetName = "collection")] [Microsoft.SqlServer.Management.Smo.Certificate[]]$CertificateCollection, [switch]$Silent ) begin { function drop-cert ($smocert) { $server = $smocert.Parent.Parent $instance = $server.DomainInstanceName $cert = $smocert.Name $db = $smocert.Parent.Name if ($Pscmdlet.ShouldProcess($instance, "Dropping the certificate named $cert for database '$db' on $instance")) { try { $smocert.Drop() Write-Message -Level Verbose -Message "Successfully removed certificate named $cert from the $db database on $instance" [pscustomobject]@{ ComputerName = $server.NetName InstanceName = $server.ServiceName SqlInstance = $instance Database = $db Certificate = $cert Status = "Success" } } catch { [pscustomobject]@{ ComputerName = $server.NetName InstanceName = $server.ServiceName SqlInstance = $instance Database = $db Certificate = $cert Status = "Failure" } Stop-Function -Message "Failed to drop certificate named $cert from $db on $instance." -Target $smocert -InnerErrorRecord $_ -Continue } } } } process { foreach ($instance in $SqlInstance) { try { Write-Message -Level Verbose -Message "Connecting to $instance" $server = Connect-SqlInstance -SqlInstance $instance -SqlCredential $sqlcredential } catch { Stop-Function -Message "Failure" -Category ConnectionError -ErrorRecord $_ -Target $instance -Continue } foreach ($db in $Database) { $smodb = $server.Databases[$db] if ($null -eq $smodb) { Stop-Function -Message "Database '$db' does not exist on $instance" -Target $smodb -Continue } foreach ($cert in $certificate) { $smocert = $smodb.Certificates[$cert] if ($null -eq $smocert) { Stop-Function -Message "No certificate named $cert exists in the $db database on $instance" -Target $smodb.Certificates -Continue } Drop-Cert -smocert $smocert } } } foreach ($smocert in $CertificateCollection) { Drop-Cert -smocert $smocert } } } |