PowerShell Command to create new site collection
Create a Content Database New-SPContentDatabase -Name IC_Content_DB -WebApplication http://sharepoint-demo Note : āIC_Content_DBā :- Name of new content database for new Site Collection ā http://sharepoint-demo ā :- Name of Web Application where you want to create new site collection with the url http://sharepoint-demo/IC More information about āNew-SPContentDatabaseā Now create a site collection $template = Get-SPWebTemplate "STS#0" New-SPSite -Url " http://sharepoint-demo/IC " -OwnerAlias " sharepointdemo\gaurav " āContentDatabase IC_Content_DB -Template $template More information about āNew-SPSiteā