From b6e361ffbce100d6096af8d736e57d8d295552df Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Wed, 19 Nov 2025 22:16:19 -0600 Subject: [PATCH] Update vCenter-SSL.ps1 --- inc/vCenter-SSL.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/vCenter-SSL.ps1 b/inc/vCenter-SSL.ps1 index c4c1e26f..a309baa1 100644 --- a/inc/vCenter-SSL.ps1 +++ b/inc/vCenter-SSL.ps1 @@ -65,7 +65,7 @@ try { Install-Module VCF.PowerCLI -Force -Scope AllUsers -AllowClobber } - Import-Module VCF.PowerCLI -ErrorAction Stop + Import-Module VCF.PowerCLI -ErrorAction Stop -Verbose:$false Set-PowerCLIConfiguration -InvalidCertificateAction Ignore -Confirm:$false ` -ParticipateInCEIP:$false -DisplayDeprecationWarnings:$false | Out-Null @@ -76,7 +76,7 @@ try { if (-not (Get-Module -ListAvailable -Name Posh-ACME)) { Install-Module Posh-ACME -Force -Scope AllUsers } - Import-Module Posh-ACME -ErrorAction Stop + Import-Module Posh-ACME -ErrorAction Stop -Verbose:$false Write-Log INFO "Posh-ACME loaded." } catch { Show-Failure $_ }