How to Create a ProductCatalog SubSite using PowerShell in SharePoint 2013

Sathish Nadarajan
 
Solution Architect
May 28, 2014
 
Rate this article
 
Views
13818

There is a new template called ProductCatalog has been introduced on SharePoint 2013. There are many unique features with this site template. For example, for the product centric sites, this template will be very much useful.

I was using this template to create a Site Collection many times. This template is readily available on the Select Template section itself while creating it as a Site Collection.

image

But when trying to create this as a SubSite under my publishing site, I faced a hurdle that, there is no template available for this as far as considering it as a SubSite.

While trying to create a subsite, I get the following screen.

image

This can be created using PowerShell Script.

The below PowerShell Script will create the Product Catalog SubSite for us.

 $template = Get-SPWebTemplate "PRODUCTCATALOG#0"
 
 New-SPWeb -Url "https://sathishserver:20000/sites/ProductCatalogSite/ProductCatalogSubSite" -Name ProductCatalogSubSite-Template $template 
 

Happy Coding.

Sathish Nadarajan.

Author Info

Sathish Nadarajan
 
Solution Architect
 
Rate this article
 
Sathish is a Microsoft MVP for SharePoint (Office Servers and Services) having 15+ years of experience in Microsoft Technologies. He holds a Masters Degree in Computer Aided Design and Business ...read more
 

Leave a comment