Create Host Named Site Collection in SharePoint 2013 using Powershell
$owner =
"domain\user"
$siteurl = "http:/x.com"
$name =
" Site"
$w =
get-spwebapplication "http://hostweb.com "
New-spsite $siteurl
–owneralias $owner –hostheaderwebapplication $w –name $name –template
"STS#0"
Comments
Post a Comment