Forum Discussion
Anonymous
Oct 25, 2018Modernize - Classic to Modern - Any PowerShell to update List Experience programatically?
Hi community, As the title suggests - I've run through the steps in this article https://docs.microsoft.com/en-us/sharepoint/dev/transform/modernize-classic-siteshowever this doesn't cover lists/l...
- AnonymousOct 25, 2018You can do it programmatically using PnP.
Set-PnPList has a parameter that lets you set the list experience. Simply write a foreach loop that cycles through site collections, sires and lists and enables new experience.
You can also switch it on via SharePoint Admin Center too.
Anonymous
Oct 25, 2018You can do it programmatically using PnP.
Set-PnPList has a parameter that lets you set the list experience. Simply write a foreach loop that cycles through site collections, sires and lists and enables new experience.
You can also switch it on via SharePoint Admin Center too.
Set-PnPList has a parameter that lets you set the list experience. Simply write a foreach loop that cycles through site collections, sires and lists and enables new experience.
You can also switch it on via SharePoint Admin Center too.
- AnonymousOct 25, 2018Thankyou!