Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
82 changes: 82 additions & 0 deletions data/samples.json
Original file line number Diff line number Diff line change
Expand Up @@ -1762,6 +1762,27 @@
"Add-PnPView"
]
},
{
"title": "Apply site theme",
"url": "https://pnp.github.io/script-samples/spo-apply-site-theme/README.html",
"rawUrl": "https://raw.githubusercontent.com/pnp/script-samples/main/scripts/spo-apply-site-theme/README.md",
"description": "Apply a theme to a specific SharePoint site without adding a tenant theme that would be available for all sites.",
"image": "https://raw.githubusercontent.com/pnp/script-samples/main/scripts/spo-apply-site-theme/assets/preview.png",
"type": "powershell",
"tabTag": "#tab/pnpps",
"authors": [
{
"name": "Aimery Thomas",
"pictureUrl": "https://github.com/a1mery.png"
}
],
"tags": [
"Connect-PnPOnline",
"Get-PnPAccessToken",
"Invoke-RestMethod",
"Disconnect-PnPOnline"
]
},
{
"title": "Associate Multiple Site Collections to Hub Site",
"url": "https://pnp.github.io/script-samples/spo-associate-multiple-sites-to-hub/README.html",
Expand Down Expand Up @@ -1989,6 +2010,24 @@
"m365 logout"
]
},
{
"title": "SharePoint Clean Comments",
"url": "https://pnp.github.io/script-samples/spo-clean-comments/README.html",
"rawUrl": "https://raw.githubusercontent.com/pnp/script-samples/main/scripts/spo-clean-comments/README.md",
"description": "Removes or disables all comments in a site collection including by user",
"image": "https://raw.githubusercontent.com/pnp/script-samples/main/scripts/spo-clean-comments/assets/preview.png",
"type": "powershell",
"tabTag": "#tab/pnpps",
"authors": [
{
"name": "Andrew Burns",
"pictureUrl": "https://github.com/GeorgiaGit.png"
}
],
"tags": [
"<Cmdlets-Used>"
]
},
{
"title": "Clean Up Unwanted Site Columns from Content Types and Lists/Libraries",
"url": "https://pnp.github.io/script-samples/spo-cleanup-site-column-usage/README.html",
Expand Down Expand Up @@ -6337,6 +6376,28 @@
"Get-PnPListItem"
]
},
{
"title": "Revoke permissions for a given Entra ID registration",
"url": "https://pnp.github.io/script-samples/spo-revoke-app-site-permission/README.html",
"rawUrl": "https://raw.githubusercontent.com/pnp/script-samples/main/scripts/spo-revoke-app-site-permission/README.md",
"description": "Demonstrates how to audit and revoke Entra ID app permissions across SharePoint site.",
"image": "https://raw.githubusercontent.com/pnp/script-samples/main/scripts/spo-revoke-app-site-permission/assets/example.png",
"type": "powershell",
"tabTag": "#tab/pnpps",
"authors": [
{
"name": "Reshmee Auckloo",
"pictureUrl": "https://github.com/reshmee011.png"
}
],
"tags": [
"Connect-PnPOnline",
"Get-PnPAzureADApp",
"Get-PnPAzureADAppSitePermission",
"Get-PnPTenantSite",
"Revoke-PnPAzureADAppSitePermission"
]
},
{
"title": "Run jobs in parallel using ForEach-Object -Parallel to iterate SharePoint site collections",
"url": "https://pnp.github.io/script-samples/spo-run-jobs-in-parallel/README.html",
Expand Down Expand Up @@ -6977,6 +7038,27 @@
"m365 spo userprofile set"
]
},
{
"title": "Maintain and Replace SharePoint List Webhook Subscriptions",
"url": "https://pnp.github.io/script-samples/spo-webhook-subscription-maintenance/README.html",
"rawUrl": "https://raw.githubusercontent.com/pnp/script-samples/main/scripts/spo-webhook-subscription-maintenance/README.md",
"description": "This script checks SharePoint sites and specific list, removes old webhook URLs, and adds or replaces them with updated Power Automate webhook subscriptions.",
"image": "https://raw.githubusercontent.com/pnp/script-samples/main/scripts/spo-webhook-subscription-maintenance/assets/preview.png",
"type": "powershell",
"tabTag": "#tab/pnpps",
"authors": [
{
"name": "Valeras Narbutas",
"pictureUrl": "https://github.com/ValerasNarbutas.png"
}
],
"tags": [
"Connect-PnPOnline",
"Get-PnPWebhookSubscription",
"Remove-PnPWebhookSubscription",
"New-PnPWebhookSubscription"
]
},
{
"title": "Add a SharePoint Document Library as a Tab in Microsoft Teams",
"url": "https://pnp.github.io/script-samples/teams-add-sharepointlibrary-as-tab/README.html",
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "pnp-powershell-extension",
"displayName": "PnP PowerShell extension",
"description": "With the PnP PowerShell VS Code extension, you can quickly learn, code and create scripts that use PnP PowerShell commands.",
"version": "3.0.49",
"version": "3.0.50",
"publisher": "adamwojcikit",
"author": {
"name": "Adam"
Expand Down
Loading