我想从“ Get-AzureRmEventHubKey”的输出中获取主键,并将其存储在变量中,我该如何通过powershell做到这一点?
答案 0 :(得分:1)
您可以尝试使用以下PowerShell cmdlet从even-hub中提取主键:
$PrimaryKey = Get-AzureRmEventHubKey -ResourceGroupName myResourceGroup -NamespaceName namespace_name -Name RootManageSharedAccessKey |Select -ExpandProperty "PrimaryKey"