Set-FASTSearchSecurityDefaultUserStore
Applies to: SharePoint Server 2010
Updates the default user store general setting.
Syntax
Set-FASTSearchSecurityDefaultUserStore [[-DefaultUserStoreId] <String>]
Set-FASTSearchSecurityDefaultUserStore [[-GeneralSetting] <DefaultUserStoreSetting>]
Detailed Description
This cmdlet updates the identity of the user store that users and groups are looked up in, to determine the appropriate document access if the user store identity is not specified when looking up the user or group.
Parameters
Parameter | Required | Type | Description |
---|---|---|---|
DefaultUserStoreId |
Optional |
System.String |
The identity of the user store to set as the default user store. |
GeneralSetting |
Optional |
Microsoft.SharePoint.Search.Extended.Security.PowerShell.Commands.GeneralSettings.DefaultUserStoreSetting |
A DefaultUserStoreSettinginstance whose property values are used for the DefaultUserStoreSetting being updated. |
Input Types
Return Types
Example
---------------EXAMPLE 1-----------------
Set-FASTSearchSecurityDefaultUserStore -DefaultUserStoreId win
This example sets the default user store to “win”.
---------------EXAMPLE 2-----------------
$defuserstore | Set-FASTSearchSecurityDefaultUserStore
This example updates the default user store using values from a pipeline GeneralSetting parameter.
In this example, the $defuserstore
GeneralSetting was created with this command: $defuserstore = Get-FASTSearchSecurityDefaultUserStore
.