SharePoint Online SPOMod: New-SPOTermGroup
This article describes a function of a custom SharePoint Online module available for download and installation on GitHub where it welcomes all your suggestions and contributions.
New-SPOTermGroup
Creates a new term group.
Parameters
Name | Required | String. Name of the term group you want to create. |
GUID | Optional | GUID. GUID of the newly created group. If not specified will be assigned randomly. |
Examples
----- EXAMPLE 1 ------
Create a new term group.
New-SPOTermGroup -Name "Testing Group"
----- EXAMPLE 2 ------
Create a new term group with a specified GUID.
$guid=New-Guid
New-SPOTermGroup -Name "Created with guid" -GUID $guid
----- EXAMPLE 3 ------
Create a new term group.
$gruppa=New-SPOTermGroup -Name "Kabaret Mlodych"
$gruppa | fl
See Also
SPOMod Cmdlets and Resources
Connect-SPOCSOM
Get-SPOList
Get-SPOTermGroups
Get-SPOHashTagsTermSet