# Move-SPwebToNewSPsite.ps1## simple outline sample of how to migrate a sub-site into its own new Site Collection.# definately not comprehensive, but should give you an idea of what to do.# NO I have not exported Alerts or Workflows. Food for thought!# Add-PSSnapin -Name Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue $ExportShare = “\\SERVERNAME\Backup\oldWeb.CMP”$OldSPWebUrl = “http://intranet.contoso.com/SubSite” $newMgdPath = “Sites”$newSPSiteName =…
Tag: SharePoint Powershell
SharePoint and Office Web Apps
Office Web Apps is discussed in great detail here: http://technet.microsoft.com/en-au/library/ff431687.aspx http://technet.microsoft.com/en-us/office/ee815687.aspx HOWEVER, the hardest thing was to find out where the Office Web Apps component is hiding, so that we could install onto a new farm.TechNet just says go to the Volume Licensing Center, but fails to say what to look for! So the…
SharePoint Regional Settings in Powershell
# my friend Purdon is a SharePoint God of note# and he reminded me of a problem that crops up occasionally# when dealing with TZ’s and Languages# here is his Powershell to correct a Language for a Site#param ([string] $SiteCol = $(throw “The Site Collection URL is required.”)) #throw exception if no value provided …