Imports a taxonomy TermGroup from either the input or from an XML file.
Import-PnPTermGroupFromXml [-Xml <String>]
Import-PnPTermGroupFromXml [-Path <String>]
Parameter | Type | Required | Description |
---|---|---|---|
Path | String | False | The XML File to import the data from |
Xml | String | False | The XML to process |
PS:> Import-PnPTermGroupFromXml -Xml $xml
Imports the XML based termgroup information located in the $xml variable
PS:> Import-PnPTermGroupFromXml -Path input.xml
Imports the XML file specified by the path.