2017-12-18 24 views
1

Azure Powershellでロール・インスタンスのステータスを取得するにはどうすればよいですか?Azure Powershellでロールのインスタント・ステータスを取得

RoleName    : Role Name 
InstanceCount  : 1 
DeploymentID   : ***deployment id******* 
OSVersion   : ***OSVersion******* 
ServiceName   : ***service name******* 
OperationDescription : Get-AzureRole 
OperationId   : ***operation id******* 
OperationStatus  : Succeeded 

誰でも助けることができる:これは出力され

Get-AzureRole -ServiceName serviceNameHere 

を私は、次のコマンドを使用していますが、それは私の役割のステータスが表示されないのですか?ありがとう!

答えて

0

私が使用:

Get-AzureRole -ServiceName "serviceNameHere" -Slot "Production" -InstanceDetails | Format-Table -Auto "InstanceName", "InstanceSize", "InstanceStatus" 

誰もがすぐにこのいつに実行された場合。

関連する問題