From 10bc2d3486085e0369d4fc00bbe544a5894aca00 Mon Sep 17 00:00:00 2001 From: Simone Bizzotto Date: Mon, 24 Feb 2025 14:30:58 +0100 Subject: [PATCH] Get-DbaNetworkCertificate, propagate credentials (#9595) --- public/Get-DbaNetworkCertificate.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/Get-DbaNetworkCertificate.ps1 b/public/Get-DbaNetworkCertificate.ps1 index d266f9192c..cc422d8dab 100644 --- a/public/Get-DbaNetworkCertificate.ps1 +++ b/public/Get-DbaNetworkCertificate.ps1 @@ -47,6 +47,6 @@ function Get-DbaNetworkCertificate { [switch]$EnableException ) process { - Get-DbaNetworkConfiguration -SqlInstance $SqlInstance -OutputType Certificate | Where-Object Thumbprint + Get-DbaNetworkConfiguration -SqlInstance $SqlInstance -Credential $Credential -OutputType Certificate | Where-Object Thumbprint } } \ No newline at end of file