1
我有一個命令,它使我有以下幾點:列表子(我認爲是它叫什麼)從字符串輸出
PS C:\Windows\system32> Get-AzureRmResource -ResourceGroupName XXX -ResourceType Microsoft.Network/expressRouteCircuits -isCollection -ApiVersion 2016-09-01 | select Properties Properties ---------- @{provisioningState=Succeeded; resourceGuid=XXX; peerings=System.Object[]; authorizations=System.Object[]; serviceProviderProperties=; circuitProvisio...
現在我只是想捕捉從屬性的provisioningState=value
。
'... |選擇展開屬性|選擇-Expand provisioningState' –
你到底需要什麼? '成功'的價值?你已經在使用|在你的例子中選擇(也就是選擇對象)。你不能使用它嗎? –