実行している問題は何ですか?
具体的なドキュメントCmdLet is here。
Azure Powershell Cmdletsが必要です。
Azure Cmdletsのインストール方法に関する説明
また、Azureにログインして、正しいテナントを指すようにする必要があります。これを支援するコードは以下のとおりです。あなたが受け取っているエラーの詳細を、より具体的な回答を与えるのに役立ちます。
# To login to Azure Resource Manager
Login-AzureRmAccount
# You can also use a specific Tenant if you would like a faster login experience
# Login-AzureRmAccount -TenantId xxxx
# To view all subscriptions for your account
Get-AzureRmSubscription
# To select a default subscription for your current session
Get-AzureRmSubscription –SubscriptionName “Free Trial” | Select-AzureRmSubscription
# View your current Azure PowerShell session context
# This session state is only applicable to the current session and will not affect other sessions
Get-AzureRmContext