Skip to content

Instantly share code, notes, and snippets.

@aflyen
Last active March 8, 2022 08:50
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/afce1fc44f66e4d2c43194bfbf3d3893 to your computer and use it in GitHub Desktop.
Save aflyen/afce1fc44f66e4d2c43194bfbf3d3893 to your computer and use it in GitHub Desktop.
Hide the template gallery from modern team and communication sites in SharePoint Online using C# and PnP.Framework
public async Task DisableTemplateGalleryDialog(SharePointClientContext context)
{
Web web = context.Web;
context.Load(web);
await context.ExecuteQueryRetryAsync();
web.WebTemplatesGalleryFirstRunEnabled = false;
web.Update();
await context.ExecuteQueryRetryAsync();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment