Skip to content

Instantly share code, notes, and snippets.

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