Skip to content

Instantly share code, notes, and snippets.

@aflyen
Last active May 25, 2022 13:49
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/d2aeb73de5fec8aeb51f73640c150451 to your computer and use it in GitHub Desktop.
Save aflyen/d2aeb73de5fec8aeb51f73640c150451 to your computer and use it in GitHub Desktop.
Hide the next-steps dialog 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 NextStepsFirstRunEnabled
$Web.NextStepsFirstRunEnabled = $false
$Web.Update()
Invoke-PnPQuery
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment