Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 704 Bytes

ImportPnPTermGroupFromXml.md

File metadata and controls

31 lines (25 loc) · 704 Bytes

Import-PnPTermGroupFromXml

Imports a taxonomy TermGroup from either the input or from an XML file.

Syntax

Import-PnPTermGroupFromXml [-Xml <String>]
Import-PnPTermGroupFromXml [-Path <String>]

Parameters

Parameter Type Required Description
Path String False The XML File to import the data from
Xml String False The XML to process

Examples

Example 1

PS:> Import-PnPTermGroupFromXml -Xml $xml

Imports the XML based termgroup information located in the $xml variable

Example 2

PS:> Import-PnPTermGroupFromXml -Path input.xml

Imports the XML file specified by the path.