Skip to content

Latest commit

 

History

History
28 lines (24 loc) · 979 Bytes

NewPnPTermGroup.md

File metadata and controls

28 lines (24 loc) · 979 Bytes

#New-PnPTermGroup Creates a taxonomy term group ##Syntax

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

##Returns

Microsoft.SharePoint.Client.Taxonomy.TermGroup

##Parameters

Parameter Type Required Description
Name String True Name of the taxonomy term group to create.
Description String False Description to use for the term group.
Id Guid False GUID to use for the term group; if not specified, or the empty GUID, a random GUID is generated and used.
TermStore Id, Name or Object False Term store to add the group to; if not specified the default term store is used.
##Examples

###Example 1

PS:> New-PnPTermGroup -GroupName "Countries"

Creates a new taxonomy term group named "Countries"