Adding multiple claims-aware web applications to a Sharepoint 2010 Farm.

This is more of a mental note to self (and something which I kept forgetting the correct syntax for, despite using it in the past)… How to add an additional claims-aware web application to an existing Sharepoint 2010 farm.

$ap=Get-SPTrustedIdentityTokenIssuer
$uri = new-object System.Uri(“
https://www.mydomain.com“)
$ap.ProviderRealms.Add($uri, “urn:sharepoint:mydomain”)
$ap.Update()

The original post courtesy of Steve Peschka:

http://blogs.technet.com/b/speschka/archive/2010/04/27/how-to-create-multiple-claims-auth-web-apps-in-a-single-sharepoint-2010-farm.aspx

1 thought on “Adding multiple claims-aware web applications to a Sharepoint 2010 Farm.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s