Create classic mode web application in SharePoint 2013

21/10/2015 17:38

add-pssnapin microsoft.sharepoint.powershell
$name = "Sharepoint classic 888"
$appPool = "SharepointClassic888AppPool"
$appPoolAccount = get-spmanagedAccount "yourdomain\sp_farm"
$port = 888
$url = "https://yourUrl"


New-SPWebApplication -Name $name -ApplicationPool $appPool -AuthenticationMethod "NTLM" -ApplicationPoolAccount $appPoolAccount -Port $port -URL $url