--- title: "Get-VETPost" description: "Returns Microsoft Teams team channel posts. Product: Veeam Backup for Microsoft 365 Product Edition: Community, Rental License, Subscription License This cmdlet provides the following parameter sets: This cmdlet returns posts published in Microsoft T" canonical: "https://helpcenter.veeam.com/docs/vbo365/explorers_powershell/get-vetpost.html" breadcrumb: "Veeam Explorers PowerShell Reference > Veeam Explorers PowerShell Reference > Veeam Explorer for Microsoft Teams > Get-VETPost" dateModified: "2026-08-20" --- # Get-VETPost ## Short Description Returns Microsoft Teams team channel posts. **Product**: Veeam Backup for Microsoft 365 **Product Edition**: Community, Rental License, Subscription License ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns posts published in Microsoft Teams team channels. You can get parent and child posts from the following backed-up sources: - Microsoft Teams organization - Microsoft Teams team - Microsoft Teams channel ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Channel

Specifies a Microsoft Teams team channel. The cmdlet will return posts from this channel.

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

VETChannel

True

Named

True (ByValue)

Organization

Specifies an array of Microsoft Teams organizations. The cmdlet will return posts from these organizations.

Accepts the VETOrganization[] object. To get this object, run the Get-VETOrganization cmdlet.

VETOrganization[]

True

Named

True (ByValue)

ParentPost

Specifies a parent post. The cmdlet will return child posts of this parent post.

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

VETPost

True

Named

True (ByValue)

Query

Specifies a query string for post search. The cmdlet will return posts that match the search query from the specified organization, team, channel or parent post.

For more information, see the Appendix A. Item Search Parameters section of the Veeam Backup for Microsoft 365 User Guide.

String

False

Named

False

Recurse

Defines that the cmdlet will return the specified parent post and all of its child posts.

Default: False

SwitchParameter

False

Named

False

Team

Specifies a Microsoft Teams team. This cmdlet will return posts from this team.

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

VETTeam

True

Named

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 Learn. ## Output Object The cmdlet returns the [`VETPost`](vetpost.md)`[]` array that contains Microsoft Teams posts. ## Examples ::: example ### Example 1. Getting Posts from Channel This example shows how to get all posts from the `General` channel. ``` $session = Get-VBOTeamsItemRestoreSession $org = Get-VETOrganization -Session $session -Name "ABC*" $team = Get-VETTeam -Organization $org -DisplayName "IT" $channel = Get-VETChannel -Team $team -DisplayName "General" Get-VETPost -Channel $channel ``` Perform the following steps: 1. Get the channel: 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`](get-vetchannel.md) cmdlet. Set the `$team` variable as the `Team` parameter value. Specify the `DisplayName` parameter value. Save the result to the `$channel` variable. 2. Run the `Get-VETPost` cmdlet. Set the `$channel` variable as the `Channel` parameter value. ::: ::: example ### Example 2. Getting Posts from Parent Post This example shows how to get channel posts under the `Announcement` parent post. ``` $session = Get-VBOTeamsItemRestoreSession $org = Get-VETOrganization -Session $session -Name "ABC*" $post = Get-VETPost -Organization $org -Query "subject: announcement" Get-VETPost -ParentPost $post ``` Perform the following steps: 1. Get the parent post: 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-VETPost` cmdlet. Set the `$org` variable as the `Organization` parameter value. Specify the `Query` parameter value. Save the result to the `$post` variable. 2. Run the `Get-VETPost` cmdlet. Set the `$post` variable as the `ParentPost` parameter value. ::: ::: example ### Example 3. Getting Posts from Organization This example shows how to get channel posts from the `ABC` organization. ``` $session = Get-VBOTeamsItemRestoreSession $org = Get-VETOrganization -Session $session -Name "ABC*" Get-VETPost -Organization $org ``` Perform the following steps: 1. Get the organization: 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. 2. Run the `Get-VETPost` cmdlet. Set the `$org` variable as the `Organization` parameter value. ::: ::: example ### Example 4. Getting Posts from Team This example shows how to get channel posts from the `IT` team. ``` $session = Get-VBOTeamsItemRestoreSession $org = Get-VETOrganization -Session $session -Name "ABC*" $team = Get-VETTeam -Organization $org -DisplayName "IT" Get-VETPost -Team $team ``` Perform the following steps: 1. Get the team: 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. 2. Run the `Get-VETPost` cmdlet. Set the `$team` variable as the `Team` parameter value. ::: ## Related Commands - [`Get-VBOTeamsItemRestoreSession`](get-vboteamsitemrestoresession.md) - [`Get-VETOrganization`](get-vetorganization.md) - [`Get-VETTeam`](get-vetteam.md) - [`Get-VETChannel`](get-vetchannel.md)