Create/Delete site collection with PowerShell
Februar 6th, 2010 Posted in Uncategorized
Today I played some minutes around with Powershell for SharePoint 2010 and easily created a new site collection and also deleted it.
Create new site collection:
New-SPSite -url http://mymachine/sites/powershell -template STS#0 -OwnerAlias “mydomain\alexander.bruett“ -Name “Powershell Testsite”
Delete site collection:
Remove-SPSite -Identity http://hbv83025270/sites/powershell -Confirm:$False
If I were an IT-Pro, I’d love this