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:
1 thought on “Adding multiple claims-aware web applications to a Sharepoint 2010 Farm.”