共用方式為


Get-AzureRmResourceGroup

取得資源群組。

警告

自 2024 年 2 月 29 日起,AzureRM PowerShell 模組已正式淘汰。 建議使用者從 AzureRM 遷移至 Az PowerShell 模組,以確保持續支援和更新。

雖然 AzureRM 模組可能仍可運作,但不再維護或支援它,但會根據用戶的判斷權和風險放置任何繼續使用。 如需轉換至 Az 模組的指引,請參閱我們的 移轉資源

語法

Get-AzureRmResourceGroup
   [-Name <String>]
   [-Location <String>]
   [-Tag <Hashtable>]
   [-ApiVersion <String>]
   [-Pre]
   [-DefaultProfile <IAzureContextContainer>]
   [<CommonParameters>]
Get-AzureRmResourceGroup
   [-Location <String>]
   [-Id <String>]
   [-ApiVersion <String>]
   [-Pre]
   [-DefaultProfile <IAzureContextContainer>]
   [<CommonParameters>]

Description

Get-AzureRmResourceGroup Cmdlet 會取得目前訂用帳戶中的 Azure 資源群組。 您可以取得所有資源群組,或依名稱或其他屬性指定資源群組。 根據預設,此 Cmdlet 會取得目前訂用帳戶中的所有資源群組。 如需 Azure 資源和 Azure 資源群組的詳細資訊,請參閱 New-AzureRmResourceGroup Cmdlet。

範例

範例 1:依名稱取得資源群組

PS C:\>Get-AzureRmResourceGroup -Name "EngineerBlog"

此命令會取得您訂用帳戶中名為 EngineerBlog 的 Azure 資源群組。

範例 2:取得資源群組的所有標籤

PS C:\>(Get-AzureRmResourceGroup -Name "ContosoRG").Tags

此命令會取得名為 ContosoRG 的資源群組,並顯示與該群組相關聯的標記。

範例 3:依位置顯示資源群組

PS C:\> Get-AzureRmResourceGroup |
  Sort Location,ResourceGroupName |
  Format-Table -GroupBy Location ResourceGroupName,ProvisioningState,Tags

範例 4:顯示特定位置中所有資源群組的名稱

PS C:\> Get-AzureRmResourceGroup -Location westus2 |
   Sort ResourceGroupName | 
   Format-Wide ResourceGroupName -Column 4

範例 5:顯示名稱以 WebServer 開頭的資源群組

PS C:\> Get-AzureRmResourceGroup | Where ResourceGroupName -like WebServer*

參數

-ApiVersion

指定資源提供者支援的 API 版本。 您可以指定與預設版本不同的版本。

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-DefaultProfile

用於與 azure 通訊的認證、帳戶、租用戶和訂用帳戶

類型:IAzureContextContainer
別名:AzureRmContext, AzureCredential
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-Id

指定要取得的資源群組識別碼。 不允許通配符。

類型:String
別名:ResourceGroupId, ResourceId
Position:Named
預設值:None
必要:False
接受管線輸入:True
接受萬用字元:False

-Location

指定要取得的資源群組位置。

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:True
接受萬用字元:False

-Name

指定要取得的資源群組名稱。 此參數支援字串開頭和/或結尾的通配符。

類型:String
別名:ResourceGroupName
Position:Named
預設值:None
必要:False
接受管線輸入:True
接受萬用字元:False

-Pre

指出此 Cmdlet 會在自動判斷要使用的版本時,考慮發行前版本 API 版本。

類型:SwitchParameter
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-Tag

要篩選資源群組的標記哈希表。

類型:Hashtable
Position:Named
預設值:None
必要:False
接受管線輸入:True
接受萬用字元:False

輸入

None

輸出

Microsoft.Azure.Commands.ResourceManagement.PSResourceGroup