We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2b4ff6c + 5d6bd90 commit 70aca2bCopy full SHA for 70aca2b
powershell/ESXiDisableProtocolConfiguration.ps1
@@ -22,6 +22,10 @@
22
)
23
24
$debug = $false
25
+ if ( $global:DefaultVIServers.Count -ne 1 ) {
26
+ write-error "Need to be connected to exactly ONE vCenter. Please try again"
27
+ return
28
+ }
29
30
Function Get-SFCBDConf {
31
param(
@@ -139,6 +143,10 @@ Function Set-ESXiDPC {
139
143
[Parameter(Mandatory=$true)][Boolean]$TLS1_2,
140
144
[Parameter(Mandatory=$true)][Boolean]$SSLV3
141
145
146
147
148
149
142
150
151
Function UpdateSFCBConfig {
152
0 commit comments