Set-FASTSearchSecurityDefaultUserStore
Updates the default user store general setting.
Syntax
Set-FASTSearchSecurityDefaultUserStore
[[-DefaultUserStoreId] <String>]
[<CommonParameters>]
Set-FASTSearchSecurityDefaultUserStore
[[-GeneralSetting] <DefaultUserStoreSetting>]
[<CommonParameters>]
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.
For permissions and the most current information about FAST Search Server 2010 for SharePoint cmdlets, see the online documentation, (https://go.microsoft.com/fwlink/?LinkId=163227).
Examples
---------------EXAMPLE 1----------------- (FAST Server for SharePoint 2010)
Set-FASTSearchSecurityDefaultUserStore -DefaultUserStoreId win
This example sets the default user store to "win".
---------------EXAMPLE 2----------------- (FAST Server for SharePoint 2010)
C:\PS>$defuserstore | Set-FASTSearchSecurityDefaultUserStore
This example updates the default user store using values from a pipeline GeneralSetting parameter.
In this example, the $defuserstoreGeneralSetting was created with this command: $defuserstore = Get-FASTSearchSecurityDefaultUserStore.
Parameters
-DefaultUserStoreId
The identity of the user store to set as the default user store.
Type: | String |
Position: | 1 |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | FAST Server for SharePoint 2010 |
-GeneralSetting
A DefaultUserStoreSettinginstance whose property values are used for the DefaultUserStoreSetting being updated.
Type: | DefaultUserStoreSetting |
Position: | 9999 |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Applies to: | FAST Server for SharePoint 2010 |