Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Don't work - when creating a new site, is Integrated Security - NTLM:

$ap = (New-SPAuthenticationProvider)
$ap | fl
$ap.DisableKerberos = $false
$ap | fl *
Start-Sleep -s 10

New-SPWebApplication -Name $WebAppName -Port $WebAppPort -HostHeader $WebAppHostHeader -URL ("http://" + $WebAppHostHeader) -ApplicationPool $WebAppAppPool -ApplicationPoolAccount (Get-SPManagedAccount $WebAppAppPoolAccount) -DatabaseName $WebAppDatabaseName -DatabaseServer $WebAppDatabaseServer –AuthenticationProvider $ap -AuthenticationMethod Kerberos
share|improve this question

2 Answers

$AP = New-SPAuthenticationProvider -UserWindowsIntegratedAuthentication
$AP | ft
$AP.DisableKerberos - $false
$AP.update
$AP | ft
$AppPoolAccount - Get-SPManagedAccount | where {$_.UserName -eq "domain\apppoolaccount"} 
$AppPoolAccount | ft -AutoSize
New-SPWebApplication -Name "MySPWebApp" -ApplicationPool "SPWebAppPool" -    ApplicationPoolAccount $AppPoolAccount -HostHeader "myspwebapp.domain.com" -Url http://myspwebapp.domain.com" -Port 80 -AuthenticationMethod Kerberos -AuthenticationProvider $AP
share|improve this answer

This worked for me

$ap = New-SPAuthenticationProvider -UseWindowsIntegratedAuthentication
$ap.DisableKerberos = $false
New-SPWebApplication -Url http://localhost -Port 80  -ApplicationPool "Sharepoint 80" -AuthenticationMethod Kerberos -ApplicationPoolAccount "qatc\spadmin" -Name test -AuthenticationPovider $ap -AuthenticationMethod "Kerberos"
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.