Tag Archives: PowerShell

Get ListTemplate and Create New List in PowerShell

A PowerShell related post today: To create a list or library in SharePoint, you can do the following: $web = Get-SPWeb "http://serverUrl" $web.Lists.Add("List Title", "List description", "Template Name")$web = Get-SPWeb "http://serverUrl" $web.Lists.Add("List Title", "List description", "Template Name") Now, say you … Continue reading

Posted in SharePoint | Tagged , | 1 Comment