Module Name | schema | applicable | online version | external help file | title |
---|---|---|---|---|---|
PnP.PowerShell |
2.0.0 |
SharePoint Online |
PnP.PowerShell.dll-Help.xml |
Add-PnPFileToSiteTemplate |
Adds a file to a PnP Provisioning Template package
Add-PnPFileToSiteTemplate [-Path] <String> [-Source] <String> [-Folder] <String>
[[-Container] <String>] [[-FileLevel] <FileLevel>] [-FileOverwrite]
[[-TemplateProviderExtensions] <ITemplateProviderExtension[]>]
[-Connection <PnPConnection>]
Add-PnPFileToSiteTemplate [-Path] <String> [-SourceUrl] <String> [[-Container] <String>]
[[-FileLevel] <FileLevel>] [-FileOverwrite] [[-TemplateProviderExtensions] <ITemplateProviderExtension[]>]
[-Connection <PnPConnection>]
Allows adding a file to a PnP Provisioning Template package (.pnp) so that the file will get uploaded to the SharePoint Online site to which the template is being invoked. This allows the file to be referenced in i.e. a document template, site logo or any other component that references a file.
Add-PnPFileToSiteTemplate -Path template.pnp -Source "Instructions.docx" -Folder "Shared Documents"
Embeds a file named "Instructions.docx" located in the current folder on the local machine into the PnP Site Template file "template.pnp" located in the current folder on the local machine, instructing it to be uploaded to the default document library when the template is applied to a site.
Add-PnPFileToSiteTemplate -Path c:\temp\template.pnp -Source "c:\temp\Sample.pptx" -Folder "Shared Documents\Samples"
Embeds a file named "Sample.pptx" located in the c:\temp on the local machine into the PnP Site Template file located at "c:\temp\template.pnp" on the local machine, instructing it to be uploaded to the folder Samples located in the default document library when the template is applied to a site.
Add-PnPFileToSiteTemplate -Path template.pnp -Source "./myfile.png" -Folder "folderinsite" -FileLevel Published -FileOverwrite:$false
Adds a file to a PnP Site Template, specifies the level as Published and defines to not overwrite the file if it exists in the site.
Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container
Adds a file to a PnP Site Template with a custom container for the file
Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl "Shared%20Documents/ProjectStatus.docx"
Adds a file to a PnP Provisioning Template retrieved from the currently connected site. The url can be server relative or web relative. If specifying a server relative url has to start with the current site url.
Optional connection to be used by the cmdlet. Retrieve the value for this parameter by either specifying -ReturnConnection on Connect-PnPOnline or by executing Get-PnPConnection.
Type: PnPConnection
Parameter Sets: (All)
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
The target Container for the file to add to the in-memory template, optional argument.
Type: String
Parameter Sets: (All)
Required: False
Position: 3
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
The level of the files to add, defaults to Published.
Type: FileLevel
Parameter Sets: (All)
Required: False
Position: 4
Default value: Published
Accept pipeline input: False
Accept wildcard characters: False
Set to overwrite in site, defaults to true.
Type: SwitchParameter
Parameter Sets: (All)
Required: False
Position: 5
Default value: $true
Accept pipeline input: False
Accept wildcard characters: False
The target Folder for the file to add to the in-memory template.
Type: String
Parameter Sets: Local File
Required: True
Position: 2
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Filename of the .PNP Open XML site template to read from, optionally including full path.
Type: String
Parameter Sets: (All)
Required: True
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
The file to add to the PnP Provisioning Template, optionally including full path.
Type: String
Parameter Sets: Local File
Required: True
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
The file to add to the PnP Provisioning Template, specifying its url in the current connected Web.
Type: String
Parameter Sets: Remove File
Required: True
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Allows you to specify ITemplateProviderExtension to execute while loading the template.
Type: ITemplateProviderExtension[]
Parameter Sets: (All)
Required: False
Position: 4
Default value: None
Accept pipeline input: False
Accept wildcard characters: False