Skip to content

Latest commit

 

History

History
101 lines (75 loc) · 1.96 KB

New-PnPTermGroup.md

File metadata and controls

101 lines (75 loc) · 1.96 KB
external help file applicable schema
SharePoint Server 2013, SharePoint Server 2016, SharePoint Online
2.0.0

New-PnPTermGroup

SYNOPSIS

Creates a taxonomy term group

SYNTAX

New-PnPTermGroup -Name <String>
                 [-Id <Guid>]
                 [-Description <String>]
                 [-TermStore <Id, Name or Object>]
                 [-Connection <SPOnlineConnection>]

EXAMPLES

------------------EXAMPLE 1------------------

PS:> New-PnPTermGroup -GroupName "Countries"

Creates a new taxonomy term group named "Countries"

PARAMETERS

-Description

Description to use for the term group.

Type: String
Parameter Sets: (All)

Required: False
Position: Named
Accept pipeline input: False

-Id

GUID to use for the term group; if not specified, or the empty GUID, a random GUID is generated and used.

Type: Guid
Parameter Sets: (All)
Aliases: GroupId

Required: False
Position: Named
Accept pipeline input: False

-Name

Name of the taxonomy term group to create.

Type: String
Parameter Sets: (All)
Aliases: GroupName

Required: True
Position: Named
Accept pipeline input: True

-TermStore

Term store to add the group to; if not specified the default term store is used.

Type: Id, Name or Object
Parameter Sets: (All)
Aliases: TermStoreName

Required: False
Position: Named
Accept pipeline input: False

-Connection

Optional connection to be used by cmdlet. Retrieve the value for this parameter by eiter specifying -ReturnConnection on Connect-PnPOnline or by executing Get-PnPConnection.

Type: SPOnlineConnection
Parameter Sets: (All)

Required: False
Position: Named
Accept pipeline input: False

OUTPUTS

RELATED LINKS

SharePoint Developer Patterns and Practices