Skip to content

Latest commit

 

History

History
27 lines (23 loc) · 912 Bytes

LoadPnPProvisioningTemplate.md

File metadata and controls

27 lines (23 loc) · 912 Bytes

#Load-PnPProvisioningTemplate Loads a PnP file from the file systems ##Syntax

Load-PnPProvisioningTemplate -Path <String>
                             [-TemplateProviderExtensions <ITemplateProviderExtension[]>]

##Parameters

Parameter Type Required Description
Path String True Filename to read from, optionally including full path.
TemplateProviderExtensions ITemplateProviderExtension[] False Allows you to specify ITemplateProviderExtension to execute while loading the template.
##Examples

###Example 1

PS:> Load-PnPProvisioningTemplate -Path template.pnp

Loads a PnP file from the file systems

###Example 2

PS:> Load-PnPProvisioningTemplate -Path template.pnp -TemplateProviderExtensions $extensions

Loads a PnP file from the file systems using some custom template provider extenions while loading the file.