Skip to content

Latest commit

 

History

History
115 lines (81 loc) · 2.55 KB

Get-PnPTeamsTab.md

File metadata and controls

115 lines (81 loc) · 2.55 KB
Module Name title schema applicable external help file online version
PnP.PowerShell
Get-PnPTeamsTab
2.0.0
SharePoint Online
PnP.PowerShell.dll-Help.xml

Get-PnPTeamsTab

SYNOPSIS

Required Permissions

  • Microsoft Graph API : One of Group.Read.All, Group.ReadWrite.All

Gets one or all tabs in a channel.

SYNTAX

Get-PnPTeamsTab -Team <TeamsTeamPipeBind> -Channel <TeamsChannelPipeBind> [-Identity <TeamsTabPipeBind>]
  

DESCRIPTION

Allows to retrieve tabs in channel. By using Identity it is possible to retrieve a specific single tab.

EXAMPLES

EXAMPLE 1

Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype

Retrieves the tabs for the specified Microsoft Teams instance and channel

EXAMPLE 2

Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity "Wiki"

Retrieves a tab with the display name 'Wiki' from the specified team and channel

EXAMPLE 3

Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25

Retrieves a tab with an id from the specified team and channel

EXAMPLE 4

Get-PnPTeamsTab -Team "My Team" -Channel "My Channel"

Retrieves the tabs for the specified Microsoft Teams instance and channel

EXAMPLE 5

Get-PnPTeamsTab -Team "My Team" -Channel "My Channel" -Identity "Wiki"

Retrieves a tab with the display name 'Wiki' from the specified team and channel

PARAMETERS

-Channel

Specify the channel id or display name of the channel to use.

Type: TeamsChannelPipeBind
Parameter Sets: (All)

Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False

-Identity

Specify the id or display name of the tab

Type: TeamsTabPipeBind
Parameter Sets: (All)

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Team

Specify the group id, mailNickname or display name of the team to use.

Type: TeamsTeamPipeBind
Parameter Sets: (All)

Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False

RELATED LINKS

Microsoft 365 Patterns and Practices