Ignite 2019 et nouveautés

Satya Nadella Vision Keynote

https://myignite.techcommunity.microsoft.com/sessions/77831?source=sessions

Power Plateform = new Power Automate & Power Virtual Agents

Jeff Teper The lastest innovations in SharePoint, OneDrive, and Office for content collaboration in Microsoft 365

https://myignite.techcommunity.microsoft.com/sessions/81522?source=sessions

Project Cortex = Knowledge Center

13 min = Intranet

Office 365 and Microsoft Teams adoption from the real world

https://myignite.techcommunity.microsoft.com/sessions/80473?source=sessions

SharePoint news and communication sites: Inform and engage your organization

https://myignite.techcommunity.microsoft.com/sessions/81505?source=sessions

Nouveau WebPart Yammer

28 min = My feed

Microsoft Teams

https://myignite.techcommunity.microsoft.com/sessions/81269

Migration to SharePoint, OneDrive, and Microsoft Teams in Microsoft 365, free and easy

https://myignite.techcommunity.microsoft.com/sessions/81518

From a top-down to flat SharePoint in twenty minutes – Benjamin Niaulin

https://myignite.techcommunity.microsoft.com/sessions/80865

Building thriving Yammer communities for knowledge sharing

https://myignite.techcommunity.microsoft.com/sessions/81504

Blogue / Nouveautés

https://techcommunity.microsoft.com/t5/Microsoft-SharePoint-Blog/SharePoint-Roadmap-Pitstop-November-2019/ba-p/1042518

https://techcommunity.microsoft.com/t5/microsoft-sharepoint-blog/sharepoint-roadmap-pitstop-december-2019/ba-p/1084500

https://techcommunity.microsoft.com/t5/Microsoft-SharePoint-Blog/Content-collaboration-throughout-Microsoft-365-Microsoft-Ignite/ba-p/960868

https://techcommunity.microsoft.com/t5/Microsoft-SharePoint-Blog/The-intelligent-intranet-powered-by-Microsoft-365-Microsoft/ba-p/975037?utm_source=t.co&utm_medium=referral

https://techcommunity.microsoft.com/t5/Microsoft-Teams-Blog/Microsoft-Teams-highlights-from-Ignite-2019/ba-p/1034812

 

Planning 2019/2020 Microsoft Office 365, Teams, IA & PowerPlateform : Part 1

 

Room Map

https://docs.microsoft.com/en-us/microsoftsearch/manage-floorplans

https://www.meetingroommap.net/

http://www.floorplanmapper.com/

Outlook Places Service

https://techcommunity.microsoft.com/t5/exchange-team-blog/easier-room-booking-in-outlook-on-the-web/ba-p/743349

STAY ON TOP OF OFFICE 365 CHANGES

https://docs.microsoft.com/en-us/office365/admin/manage/stay-on-top-of-updates?view=o365-worldwide

Site d’équipe sans groupe Office 365

Office 365 Group or Communication Site?

WebParts connectés

https://support.office.com/en-us/article/connect-web-parts-in-sharepoint-online-b457668c-d843-4b1b-8977-a6f9228a1dec

Office 365/SharePoint Framework

https://developer.microsoft.com/en-us/sharepoint/blogs/announcing-sharepoint-framework-1-10-extending-sharepoint-framework-across-microsoft-365/

Call to action WebPart

How to use the SharePoint Online ‘Call to Action’ Web Part

Group Calendar WebPart

https://support.office.com/en-us/article/use-the-group-calendar-web-part-eaf3c04d-5699-48cb-8b5e-3caa887d51ce

Publicité

Change Author and Date of a Page

Here is my recipe to update the Created by, Author, Created, FirstPublishedDate and Promoted fields of pages in SharePoint Online.
$listItemID = 0
$PageName = « PageURLwithoutASPX »
$DesiredDate = Get-Date « 2019-11-22 09:00:00 »
$EmailUser = « Edward.Snowden@saveus.com »
Set-PnPListItem -List « Site Pages » -Identity $listItemID -Values @{
« Created »=$DesiredDate;
# »Modified »=$DesiredDate;
« FirstPublishedDate »=$DesiredDate;
« Editor »=$EmailUser;
« Author »=$EmailUser;
« _AuthorByline »=$EmailUser;
# »PromotedState » = « 0 »
}
Set-PnPClientSidePage -Identity $PageName -Publish

After running this script, a new version will be published (with the comment ‘Published by provisioning’) and the ‘Modified by’ (Editor) and ‘Modified’ fields will be updated by the user that ran the script.

You can comment out some of the lines when you don’t wish to update some values.

However!! In order to change the ‘Author’ you must keep the ‘Editor’ line!?

——————————————————————————————————————–

Cannot be used?  -SystemUpdate

Set-PnPListItem -List « Pages du site » -Identity $listItemID -Values @{« FirstPublishedDate »=$desiredDate} -SystemUpdate

Set-PnPListItem -List « Pages du site » -Identity $listItemID -Values @{« PromotedState »=1} -SystemUpdate

https://github.com/SharePoint/PnP-PowerShell/issues/1792

https://github.com/SharePoint/PnP-PowerShell/issues/1413

https://stackoverflow.com/questions/57186537/how-to-update-the-modified-by-and-created-by-fields-using-pnp

https://techcommunity.microsoft.com/t5/sharepoint/resolved-how-to-change-modern-page-author-from-the-quot-created/m-p/220432