From 8c11e8059828a5d54ba2b9e581ab23f101809191 Mon Sep 17 00:00:00 2001 From: Osvaldo Daibert Date: Thu, 22 Feb 2018 09:43:45 -0800 Subject: [PATCH] [FIXED] Not showing Subscription names Changed $_.SubscriptionName to $_.Name --- scripts/PowerShell/deploy.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/PowerShell/deploy.ps1 b/scripts/PowerShell/deploy.ps1 index 4fa49cbd..6f524e66 100644 --- a/scripts/PowerShell/deploy.ps1 +++ b/scripts/PowerShell/deploy.ps1 @@ -56,7 +56,7 @@ $subscription # if the user has more than one subscriptions force the user to select one if ($Subscriptions.Length -gt 1) { $i = 1 - $Subscriptions | % { Write-Host "$i) $($_.SubscriptionName)"; $i++ } + $Subscriptions | % { Write-Host "$i) $($_.Name)"; $i++ } while($true) {