Skip to content

Instantly share code, notes, and snippets.

@OlafD
Created April 17, 2020 12:23
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 OlafD/fa5c61c5341612132cf6c4e669bf5288 to your computer and use it in GitHub Desktop.
Save OlafD/fa5c61c5341612132cf6c4e669bf5288 to your computer and use it in GitHub Desktop.
Change the site type of a page in the Site Pages library in SharePoint Online from an Article page to an unpublished News page.
$item = Get-PnPListItem -List "Site Pages" -Id 11 # use the id of your page
$item["PromotedState"] = 1
$item.Update()
Invoke-PnPQuery
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment