SharePoint change list URL

In this SharePoint tutorial, we will discuss different ways to change list or library URLs in SharePoint 2013/2016. Here, we will see how to change the list or document library using PowerShell or SharePoint designer 2013 or by using the Open with Explorer option in SharePoint 2013/2016. Step by step let us see, SharePoint change list url

In SharePoint 2013/2016 we often see the challenge of changing the URL of a SharePoint list or document library. We all know that we don’t have an option to change the URL of a list or document library as part of settings.

Since we don’t see an option as part of SharePoint list/library settings, which is not the end of the tunnel we have 3 different ways to change list URL in SharePoint 2013/2016.

  • Change SharePoint list or document URL using PowerShell
  • Change SharePoint list or document URL using Document Library – Open with explorer
  • Change SharePoint list or document URL using SharePoint Designer

Let us walk through each and every approach.

PowerShell to change SharePoint List URL

It is always recommended to automate any manual job with PowerShell in SharePoint if the change is more than 2 items in the site collection. The below script helps us to update the URL of a SharePoint list or library.

PowerShell to Change SharePoint Document Library URL

Below is the PowerShell script to change SharePoint 2013/2016 document library. You can write PowerShell scripts using Windows PowerShell ISE or Visual Studio Code.

$libOldURL = "TestDocumentLibrary"
$libNewURL = "TstDocLib"
$web = Get-SPWeb -Identity "http://SharePoint13:12345/KVNTest/"
$objLib = $web.GetList($web.Url + "/" + $libOldURL)
$objRootFolder = $objLib.RootFolder
$objRootFolder.MoveTo($web.Url + "/" + $libNewURL)
$web.Close()

Document Library URL:

Below you can see the document library URL has been changed.

change list url in sharepoint 2013
sharepoint change list url

Once you run the above PowerShell script, the document library URL will be changed like below:

change sharepoint list url
change sharepoint list url

In the above PowerShell script, we are moving the root folder of the library, this will move all the data and properties seamlessly.

PowerShell to Change SharePoint List URL

Below is the PowerShell script to change SharePoint 2013/2016 list.

$lstOldURL = "Sample List"
$lstNewURL = "smpList"
$web = Get-SPWeb -Identity "http://Sharepoint13:12345/KVNTest/"
$web.Lists[$lstOldURL].RootFolder.MoveTo($lstNewURL)
$web.Close()

Change Document Library URL with Open with Explorer Option

This approach is a very simple and handy approach that can be accomplished by any user who nominated as a SharePoint site owner. Steps to be accomplished to change SharePoint document library URL with Open with Explorer option.

  • Navigate to Document Library in SharePoint Site
  • Click on Library in ribbon control
  • Click on “Open with Explorer” option under “Connect & Export” section
rename sharepoint site url
change sharepoint library url
  • Navigate one level above
change list url in sharepoint online
change url of sharepoint list
change url of sharepoint list
  • Now that you can see all the SharePoint 2013/2016 document libraries & List in the Site as folders
how to change sharepoint 2013 list url
sharepoint change url of document library
  • Rename the document library / List you are looking for
how to change sharepoint list url
sharepoint change url of list

Change Document Library or List URL using SharePoint Designer 2013

The last and a sensitive approach, the reason why I am stressing as sensitive is if we make any small typo mistake entire site will come down. Here I will show, how you can change the SharePoint 2013/2016 document library or list using SharePoint designer 2013.

Steps to be followed:

  • Open SharePoint Designer 2013 and open the SharePoint site
  • Click on All Files
  • Right-click on the required list to be altered and click on Rename option
  • Once you rename navigate back to site in IE and check the URL and name of the list.
how to change sharepoint list name
sharepoint online change library url
how to change sharepoint list internal name
sharepoint change web address of list

Here we saw how to change SharePoint 2013/2016 list or document library using PowerShell or SharePoint designer 2013. Also, we saw how to change the SharePoint list or document library using Open with Explorer option in SharePoint 2013/2016.

You may like the following SharePoint tutorials:

In this SharePoint 2013 tutorial, we learned how to change the list or library using PowerShell, SharePoint designer 2013, and Open with explorer options in SharePoint 2013/2016.

>