从“ Get-AzureRmEventHubKey”命令power-shell中提取event-hub Microsoft-azure主键

时间:2018-09-04 06:41:22

标签: azure azure-powershell azure-eventhub

我想从“ Get-AzureRmEventHubKey”的输出中获取主键,并将其存储在变量中,我该如何通过powershell做到这一点?

1 个答案:

答案 0 :(得分:1)

您可以尝试使用以下PowerShell cmdlet从even-hub中提取主键:

$PrimaryKey = Get-AzureRmEventHubKey -ResourceGroupName myResourceGroup -NamespaceName namespace_name -Name RootManageSharedAccessKey |Select -ExpandProperty "PrimaryKey"