--- title: "Get-VETChannel" description: "Returns Microsoft Teams team channels. Product: Veeam Backup for Microsoft 365 Product Edition: Community, Rental License, Subscription License This cmdlet returns an array of channels from the specified Microsoft Teams team." canonical: "https://helpcenter.veeam.com/docs/vbr/explorers_powershell/get-vetchannel.html" breadcrumb: "Veeam Explorers PowerShell Reference > Veeam Explorers PowerShell Reference > Veeam Explorer for Microsoft Teams > Get-VETChannel" dateModified: "2026-08-18" --- # Get-VETChannel ## Short Description Returns Microsoft Teams team channels. **Product**: Veeam Backup for Microsoft 365 **Product Edition**: Community, Rental License, Subscription License ## Syntax ``` Get-VETChannel [-Team] [[-DisplayName] ] [] ``` ## Detailed Description This cmdlet returns an array of channels from the specified Microsoft Teams team. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

DisplayName

Specifies an array of Microsoft Teams channel display names. The cmdlet will return an array of channels with these names.

This parameter accepts wildcard characters.

String[]

False

1

False

Team

Specifies a Microsoft Teams team. The cmdlet will return an array of channels from this team.

Accepts the VETTeam object. To get this object, run the Get-VETTeam cmdlet.

VETTeam

True

0

True (ByValue)

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the [About Common Parameters](http://go.microsoft.com/fwlink/p/?LinkID=113216) section of Microsoft Docs. ## Output Object The cmdlet returns the [`VETChannel`](vetchannel.md)`[]` array that contains Microsoft Teams channels. ## Examples ::: example ### Getting Microsoft Teams Channels This example shows how to get the `General` channel from the `IT` team of the `ABC` Microsoft Teams organization added to Veeam Backup for Microsoft 365. ``` $session = Get-VBOTeamsItemRestoreSession $org = Get-VETOrganization -Session $session -Name "ABC*" $team = Get-VETTeam -Organization $org -DisplayName "IT" Get-VETChannel -Team $team -DisplayName "General" ``` Perform the following steps: 1. Run the [`Get-VBOTeamsItemRestoreSession`](get-vboteamsitemrestoresession.md) cmdlet. Save the result to the `$session` variable. 2. Run the [`Get-VETOrganization`](get-vetorganization.md) cmdlet. Set the `$session` variable as the `Session` parameter value. Specify the `Name` parameter value. Use the \* wildcard character to substitute the timestamp. Save the result to the `$org` variable. 3. Run the [`Get-VETTeam`](get-vetteam.md) cmdlet. Set the `$org` variable as the `Organization` parameter value. Specify the `DisplayName` parameter value. Save the result to the `$team` variable. 4. Run the `Get-VETChannel` cmdlet. Set the `$team` variable as the `Team` parameter value. Specify the `DisplayName` parameter value. ::: ## Related Commands - [`Get-VBOTeamsItemRestoreSession`](get-vboteamsitemrestoresession.md) - [`Get-VETOrganization`](get-vetorganization.md) - [`Get-VETTeam`](get-vetteam.md)