This commit is contained in:
Zack Meier
2026-04-15 15:45:50 -05:00
commit 1d304511b8
613 changed files with 140998 additions and 0 deletions
@@ -0,0 +1,23 @@
<#
.Synopsis
Disconnects from ITD's vCenter servers
.DESCRIPTION
Disconnects from ITD's vCenter servers
.EXAMPLE
Disconnect-ITDvCenter
#>
function Disconnect-ITDvCenter {
[CmdletBinding()]
Param
(
)
Begin {
$VIServers = "itdvmvc1.nd.gov", "itdvmvc2.nd.gov"
}
Process {
Disconnect-VIServer -Server $VIServers -Confirm:$false
}
End {
}
}