Get-SPWebTemplate
Applies to: SharePoint Server 2010, SharePoint Foundation 2010
Topic Last Modified: 2010-02-15
Displays all globally installed site templates that match the given identity.
Get-SPWebTemplate [[-Identity] <SPWebTemplatePipeBind>] [-AssignmentCollection <SPAssignmentCollection>]
The Get-SPWebTemplate cmdlet displays all installed site templates that match the full or partial identity that was given.
| Parameter | Required | Type | Description | ||
|---|---|---|---|---|---|
| Identity | Optional | Microsoft.SharePoint.PowerShell.SPWebApplicationPipeBind | Specifies the name of the Web template to display. The type must be the ID or full or partial name of the Web template. | ||
| AssignmentCollection | Optional | Microsoft.SharePoint.PowerShell.SPAssignmentCollection | Manages objects for the purpose of proper disposal. Use of objects, such as SPWeb or SPSite, can use large amounts of memory and use of these objects in Windows PowerShell scripts requires proper memory management. Using the SPAssignment object, you can assign objects to a variable and dispose of the objects after they are needed to free up memory. When SPWeb, SPSite, or SPSiteAdministration objects are used, the objects are automatically disposed of if an assignment collection or the Global parameter is not used.
|
--------------EXAMPLE 1-----------------
$template = Get-SPWebTemplate "STS#0"
New-SPSite http://contoso.com -OwnerAlias "DOMAIN\JDOE" -Template $template
This example creates a site collection by using the team site Web template (ID=STS#0).
--------------EXAMPLE 2-----------------
Get-SPWebTemplate "STS*"
This example displays basic information about all the STS templates.

Note