Skip to content

Instantly share code, notes, and snippets.

@aflyen
Last active May 25, 2022 13:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aflyen/dd98179de41d503bbabc0d95822bc704 to your computer and use it in GitHub Desktop.
Save aflyen/dd98179de41d503bbabc0d95822bc704 to your computer and use it in GitHub Desktop.
Hide the template gallery from modern team and communication sites in SharePoint Online using PowerShell and PnP.Framework
Connect-PnPOnline -Url https://contoso.sharepoint.com/sites/project101
$Web = Get-PnPWeb -Includes WebTemplatesGalleryFirstRunEnabled
$Web.WebTemplatesGalleryFirstRunEnabled = $false
$Web.Update()
Invoke-PnPQuery
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment