Change SharePoint Online List URL | PnP Samples

This sample script shows how to change SharePoint online list URL and rename the list after list creation using PnP PowerShell. Scenario inspired from this blog post: Change SharePoint Online List URL using PnP PowerShell. # Get the list object $list = Get-PnPList -Identity $oldListName -ErrorAction Stop.

Read More