mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-02-07 13:38:39 +00:00
13 lines
332 B
PowerShell
13 lines
332 B
PowerShell
param (
|
|
[Parameter(Mandatory=$true)]
|
|
[string]$siteUrl)
|
|
|
|
Connect-PnPOnline -Url $siteUrl -Interactive
|
|
|
|
Set-PnPSite -NoScriptSite $false
|
|
Invoke-PnPSiteTemplate -Path ".\templates\Offerings.xml"
|
|
|
|
$ct = Get-PnPContentType -Identity "Offering"
|
|
Set-PnPContentType -Identity $ct -UpdateChildren
|
|
|
|
Set-PnPSite -NoScriptSite $true |