Friday, January 18, 2013

Creating a new WebApplication using STSADM

Creating Web application using STSADM

stsadm -o extendvs -url http://webapplicationxyz 
                             -ownerlogin domain\username 
                             -owneremail emailid                  
                             -exclusivelyusentlm
                             -databasename DB-xyz
                             -donotcreatesite 
                             -apidname apppoolxyz 
                             -apidlogin domain\farmaccount 
                             -apidpwd passwordxyz



-exclusivelyusentlm 
Specifies to exclusively use NTLM authentication instead of Negotiate (Kerberos). Kerberos requires the application pool account to be a network service and to be configured by the domain administrator. NTLM authentication works with any application pool account and the default domain configuration.

-donotcreatesite  
If this parameter is present, no corresponding site collection will be created for the Web application.


No comments:

Post a Comment