New-FASTSearchSecurityClaimsUserStore
Applies to: SharePoint Server 2010
Creates a FAST Search Server 2010 for SharePoint security user store to provide security for claims content.
Syntax
New-FASTSearchSecurityClaimsUserStore [-Identity] <String> [[-Description] <String>] [[-Issuer] <String>] [-ObjectToClone <ClaimsUserStore>]
Detailed Description
This cmdlet configures extended security for claims content.
Parameters
Parameter | Required | Type | Description |
---|---|---|---|
Identity |
Required |
System.String |
The user store identity. |
Description |
Optional |
System.String |
A brief explanation of the user store. |
Issuer |
Optional |
System.String |
The Microsoft SharePoint Server Security Token Service (STS) claims provider that issued the claims. |
ObjectToClone |
Optional |
Microsoft.SharePoint.Search.Extended.Security.PowerShell.Commands.ClaimsContent.ClaimsUserStore |
A claims user store object whose property values are used as a baseline to create another claims user store. |
Input Types
Return Types
Example
---------------EXAMPLE 1-----------------
New-FASTSearchSecurityClaimsUserStore -Identity clm
This example creates a new security claims user store with a user store Identity of “clm”.
This example uses default values for all parameters except the required Identity parameter.
---------------EXAMPLE 2-----------------
Get-FASTSearchSecurityClaimsUserStore -Identity clm | New-FASTSearchSecurityClaimsUserStore -Identity cl2
This example creates a new security claims user store with an identity of “cl2” using all properties from the claims user store “clm” as a baseline. The New-FASTSearchSecurityClaimsUserStore cmdlet uses the ObjectToClone value on the pipeline as input to the New cmdlet.
See Also
Reference
Get-FASTSearchSecurityClaimsUserStore
Set-FASTSearchSecurityClaimsUserStore