I am using below code to select subscription id in Power shell script, but when i click on the subscription id it does not select...
$subscriptionId = (Get-AzureRmSubscription | Out-GridView -Title 'Select Azure Subscription:' -PassThru).SubscriptionId Select-AzureRmSubscription -SubscriptionId $subscriptionId
We can use this script to do it:
We should use
Id
, notSubscriptionId
, we can find the output here: