From 26d5522928d38486bc06f7a13e73b2013c032d4c Mon Sep 17 00:00:00 2001 From: Robert van den Nieuwendijk Date: Thu, 1 Feb 2018 14:11:42 +0100 Subject: [PATCH] Update 00 Connection Plugin for vCD.ps1 Added the initialization of the $CIHost variable for use in other plugins. --- Plugins/00 Connection Plugin for vCD.ps1 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Plugins/00 Connection Plugin for vCD.ps1 b/Plugins/00 Connection Plugin for vCD.ps1 index b746c37..3e9c610 100644 --- a/Plugins/00 Connection Plugin for vCD.ps1 +++ b/Plugins/00 Connection Plugin for vCD.ps1 @@ -1,6 +1,6 @@ $Title = "Connection settings for vCD" $Author = "Alan Renouf" -$Version = 1.0 +$Version = 1.1 # Start of Settings # Please Specify the IP address or Hostname of the vCD Instance to connect to @@ -33,5 +33,7 @@ Write-CustomOut "Collecting OrgVDC Objects" $OrgvDC = Get-OrgvDC Write-CustomOut "Collecting ProviderVDC Objects" $ProviderVDC = Get-ProviderVdc +Write-CustomOut "Collecting Host Objects" +$CIHost = Search-Cloud -QueryType Host | Sort Name $Server = $CIServer