You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -68,6 +68,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
68
68
- Added `Get-PnPBrandCenterFontPackage` to retrieve the available font packages from the various Brand Centers [#4830](https://github.com/pnp/powershell/pull/4830)
69
69
- Added `Use-PnPBrandCenterFontPackage` to apply the specified font package from the Brand Center to the current site [#4830](https://github.com/pnp/powershell/pull/4830)
70
70
- Added `Add-PnPBrandCenterFont` to upload a font to the tenant Brand Center [#4830](https://github.com/pnp/powershell/pull/4830)
71
+
- Added `-Stream` parameter to `Invoke-PnPSiteTemplate` which allows an in memory .pnp site template to be applied to a site
Downloads the ProjectSite.pnp template from the TemplateGallery document library and applies it to the currently connected to site.
127
+
110
128
## PARAMETERS
111
129
112
130
### -ClearNavigation
@@ -293,6 +311,20 @@ Accept pipeline input: False
293
311
Accept wildcard characters: False
294
312
```
295
313
314
+
### -Stream
315
+
Allows a stream to be passed in. This is useful when you want to apply a template that is stored in a stream, for example when you download it from SharePoint Online so you can keep it in memory and don't (temporarily) need to store it anywhere. It only supports .pnp files, not .xml files. It also supports having additional files stored in the .pnp file.
316
+
317
+
```yaml
318
+
Type: Stream
319
+
Parameter Sets: Stream
320
+
321
+
Required: True
322
+
Position: Named
323
+
Default value: None
324
+
Accept pipeline input: False
325
+
Accept wildcard characters: False
326
+
```
327
+
296
328
### -TemplateId
297
329
ID of the template to use from the xml file containing the provisioning template. If not specified and multiple SiteTemplate elements exist, the last one will be used.
0 commit comments