Skip to content

Latest commit

 

History

History
148 lines (111 loc) · 2.75 KB

Export-PnPTaxonomy.md

File metadata and controls

148 lines (111 loc) · 2.75 KB
external help file applicable schema
SharePoint Server 2013, SharePoint Server 2016, SharePoint Online
2.0.0

Export-PnPTaxonomy

SYNOPSIS

Exports a taxonomy to either the output or to a file.

SYNTAX

TermSet

Export-PnPTaxonomy [-TermSetId <GuidPipeBind>]
                   [-TermStoreName <String>]
                   [-IncludeID [<SwitchParameter>]]
                   [-Path <String>]
                   [-Force [<SwitchParameter>]]
                   [-Delimiter <String>]
                   [-Encoding <Encoding>]
                   [-Connection <SPOnlineConnection>]

EXAMPLES

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

PS:> Export-PnPTaxonomy

Exports the full taxonomy to the standard output

------------------EXAMPLE 2------------------

PS:> Export-PnPTaxonomy -Path c:\output.txt

Exports the full taxonomy the file output.txt

------------------EXAMPLE 3------------------

PS:> Export-PnPTaxonomy -Path c:\output.txt -TermSet f6f43025-7242-4f7a-b739-41fa32847254

Exports the term set with the specified id

PARAMETERS

-Delimiter

The path delimiter to be used, by default this is '|'

Type: String
Parameter Sets: (All)

Required: False
Position: Named
Accept pipeline input: False

-Encoding

Defaults to Unicode

Type: Encoding
Parameter Sets: (All)

Required: False
Position: Named
Accept pipeline input: False

-Force

Overwrites the output file if it exists.

Type: SwitchParameter
Parameter Sets: (All)

Required: False
Position: Named
Accept pipeline input: False

-IncludeID

If specified will include the ids of the taxonomy items in the output. Format: ;#

Type: SwitchParameter
Parameter Sets: (All)

Required: False
Position: Named
Accept pipeline input: False

-Path

File to export the data to.

Type: String
Parameter Sets: (All)

Required: False
Position: Named
Accept pipeline input: False

-TermSetId

If specified, will export the specified termset only

Type: GuidPipeBind
Parameter Sets: TermSet

Required: False
Position: Named
Accept pipeline input: False

-TermStoreName

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

Type: String
Parameter Sets: TermSet

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

RELATED LINKS

SharePoint Developer Patterns and Practices