Forum Discussion
Rob Oudejans
Mar 24, 2021Brass Contributor
SharePoint - Scheduled news will not be published
Hi all, I'm glad it's finaly possible to schedule a newspost in SharePoint. Unfortunately, based on my experiences, I have no confidence in the scheduling functionality. Why? It often happens tha...
Stefan4052
Aug 05, 2022Copper Contributor
Hi Rob,
We are experiencing the same issue: Sometimes scheduling is working sometimes not.
Did you ever find a solution for this? The link in Nathure's reply is not working any longer.
We are experiencing the same issue: Sometimes scheduling is working sometimes not.
Did you ever find a solution for this? The link in Nathure's reply is not working any longer.
- NathureAug 22, 2022Copper Contributor
Hi Stefan,
I'm sorry the link doesn't work anymore.
We still sometimes have the problem.
Most of the time, it is the “first published date” that is empty.
To fix it, I use a PnpOnline script like this :# Connection to $siteUrl (to be defined) Connect-PnPOnline -url $siteUrl -SPOManagementShell # Variable to current date $Date = Get-Date -Format "yyyy-MM-dd" $FirstPublishedDate = $Date + "T08:00:00-00:00" # Write here the id of the page to be corrected $Id = # Command to change the date Set-PnPListItem -List SitePages -Identity $Id -Values @{"FirstPublishedDate"=$FirstPublishedDate} -SystemUpdate
Hope this help.