Create List from Custom List Template in SharePoint using PowerShell

Requirement: Create a SharePoint list from a custom template using PowerShell

How to create a SharePoint list from template?

List templates in SharePoint save your time by providing a template on any existing list or library, which comprises all columns and optionally the data from the source list. You can create any number of copies from the template (or source list copy)

Assuming you have an existing list template in the site, Here is how to create a list from list template in SharePoint.

  1. Navigate to SharePoint site >> Click on the Settings gear icon and click “Add an app”
  2. In the “Find an App” search box, enter your list template name such as “Project template”. You can also scroll down and use the pagination to move to the next page (custom list templates will be on the second page!) and pick your list template.
  3. Click on the custom list template shown
    sharepoint create list from template powershell
  4. Provide a name for your new list and click on “OK”
  5. You will see a new list created with same list schema, and also data if you selected “Include Content” when creating the list template originally.

PowerShell script to create a SharePoint list from list template:

Let’s create a list using template in SharePoint with PowerShell.

Add-PSSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue

Function Create-ListFromTemplate($WebURL, $ListName, $TemplateName)
{
    #Get the Web from URL
    $Web = Get-SPWeb $WebURL

    #Get the Specific list template
    $Template = $web.site.GetCustomListTemplates($Web) | where {$_.InternalName -match $TemplateName }

    #Check if given template name exists!
    if($Template -eq $null)
    {
        Write-host "Specified list template not found!" -f Red
        exit
    }

    #Create list using template in sharepoint 2013
    $web.Lists.Add($ListName, $ListName, $Template)
    Write-host "New List Created from Custom List template" -f DarkGreen 
}

#Variables
$WebURL="https://intranet.crescent.com"
$ListName="Project-607"
$ListTemplateName="ProjectTemplate"

#Call the function to create list from template
Create-ListFromTemplate $WebURL $ListName $ListTemplateName

This script creates list from template (.stp) in SharePoint.

create custom list from template sharepoint

Here is my another post for SharePoint Online on creating list from custom list template: SharePoint Online: Create List from Template using PowerShell

Salaudeen Rajack

Salaudeen Rajack - SharePoint Expert with Two decades of SharePoint Experience. Love to Share my knowledge and experience with the SharePoint community, through real-time articles!

3 thoughts on “Create List from Custom List Template in SharePoint using PowerShell

  • Hi, is there a way in SharePoint to create a list from a saved template using rest api?
    thanks a lot, Anat

    Reply
    • AFAIK – Its not possible to create lists from a template using REST, As there are no parameter for custom template!

      Reply

Leave a Reply

Your email address will not be published. Required fields are marked *