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