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 |