Created
November 11, 2021 13:30
-
-
Save kilasuit/7f50ae432a9a2f70e8e2ec6ecf60f995 to your computer and use it in GitHub Desktop.
PnP Content type to Site Design
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$tenant = "myo365tenant" | |
$SiteURL = "https:://$tenant.sharepoint.com/sites/contenttypehub" | |
$group = 'Custom Content Types' | |
Connect-PnPOnline -url $SiteUrl -Interactive | |
Get-PnPContentType | Where Group -eq $group | Foreach { | |
@" | |
{ | |
"verb": "addContentType", | |
"name":"$_" | |
}, | |
"@ } | Set-Clipboard |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment