Hello,
- I create a new web application
$sp = New-SPAuthenticationProvider
New-SPWebApplication -Name "Intranet Site" -Port 80 -HostHeader Intranet -URL "http://Intranet" -ApplicationPool "IntranetAppPool" -ApplicationPoolAccount(Get-SPManagedAccount"MOT\PSSPFarm") –AuthenticationProvider $sp
- I create a site collection
New-SPSite http://Intranet -owneralias "Mot\Administrator" -name "Intranet Sites" -Template "STS#0"
- I setup DNS
$A = [wmiclass]“\\sp-pc\root\MicrosoftDNS:MicrosoftDNS_AType”
$A.CreateInstanceFromPropertyData("sp-pc", "MOT.KFS", "Intranet.MOT.KFS",1, 7200, "7.7.7.23" )
- I check the DNS
- I have tried to open the site "http://intranet" . it asks me to enter usename and password .
- I set the username and password "MOT\Administrator" . Then press "Log-in".
- it asks me again and again and ....... and never opened the site .
how can I solve it ?
ASk