AzurePowershell Get-AzureSubscription 缺少一个订阅

AzurePowershell Get-AzureSubscription one subscription is missing

我做了一个系统,每天早上,我使用 Azure 的 AzurePopwershell 获取 CSV 文件

例如

select-azuresubscription -SubscriptionName  "Kazu Pay-As-You-Go"  
Get-AzureVM | export-csv -Path "C:\Users\kazu\Desktop\AzureProject\kazu-Pay-As-You-Go-VM.csv"-NoTypeInformation

今天早上,我的老板刚刚告诉我,我们公司只从 Azure 获得了两个 directories/accounts 的信息。我公司有3个directories/accounts。所以,我们点击 https://manage.windowsazure.com/--->"FILTER BY DIRECTORY:" 左上角的 "Subscriptions",有 3 个 directories/account,他告诉我我们从 directories/account 获取信息"mycompany3" 和 "mycompany1" ,他还想让我从 "mycompany2" 那里得到信息。

所以我点击了 "directory3" 它显示在 "FILTER BY SUBSCRIPTIONS:"

我点击了 "directory1",它显示在 "FILTER BY SUBSCRIPTIONS:"

下方

我点击了 "directory2",它显示在 "FILTER BY SUBSCRIPTIONS:"

下方

所以我去了 AzurePowershell

Get-AzureSubscription

回声是

我注意到 "Main Subscription" 不见了

一开始做project的时候是跟着http://blogs.technet.com/b/canitpro/archive/2013/11/06/set-by-step-manage-windows-azure-using-powershell.aspx

如何连接到 "directory2"、"Main Subcription"?

您是如何使用 Azure Powershell 进行身份验证的?使用Add-AzureAccount,还是使用Import-AzurePublishSettingsFile?如果您使用发布设置文件,您可能没有其他订阅。尝试使用 Add-AzureAccount,它应该模拟与登录时相同的权限集。