Posts

Showing posts with the label SharePoint 2013

Getting Started With Host Named Site Collections - PowerShell Script

Well, it's been a while, but I'm finally getting around to really digging deep into SP2013.  As I go through this I figured I'd start putting together a few helper PowerShell Scripts: Once you've got a SP2013 developer machine created you may want to stand up additional Host Named Site Collections (If you haven't created one yet, use the Critical Path Training guide at http://www.criticalpathtraining.com in the Members section).  I've also included the ability to stand up a new ContentDB for your site collection. Here's a relatively simple Powershell script to help you with this: $snapin = Get-PSSnapin | Where-Object { $_.Name -eq "Microsoft.SharePoint.Powershell" } if($snapin -eq $null) {     Write-Host "...loading Microsoft.SharePoint.PowerShell snapin" -ForegroundColor Gray     Add-PSSnapin Microsoft.SharePoint.PowerShell } function CreateHNSC($name, $url, $template, $contentdatabasename) {     $defaultWebApp = Get-SP...