Skip to content

Commit 3991495

Browse files
committed
Add FAST cmdlets.
1 parent 59d3fa1 commit 3991495

File tree

77 files changed

+9122
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+9122
-0
lines changed
Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
---
2+
external help file:
3+
applicable: FAST Server for SharePoint 2010
4+
schema: 2.0.0
5+
title: Add-FASTSearchResource
6+
---
7+
8+
# Add-FASTSearchResource
9+
10+
## SYNOPSIS
11+
Uploads a resource to the resource store.
12+
13+
## SYNTAX
14+
15+
```
16+
Add-FASTSearchResource [-Path] <String> [-FilePath] <String> [<CommonParameters>]
17+
```
18+
19+
## DESCRIPTION
20+
This cmdlet uploads a specified file, located in the local environment, to the Microsoft FAST Search Server 2010 for SharePoint resource store.
21+
The location of the resource store is typically specified in %FASTSEARCH%/etc/Admin.config (where %FASTSEARCH% is the FAST Search Server 2010 for SharePoint installation folder.) Specify a unique location of the resource in the upload URI.
22+
23+
For permissions and the most current information about FAST Search Server 2010 for SharePoint cmdlets, see the online documentation, (http://go.microsoft.com/fwlink/?LinkId=163227).
24+
25+
## EXAMPLES
26+
27+
### ---------------EXAMPLE 1----------------- (FAST Server for SharePoint 2010)
28+
```
29+
C:\PS>Add-FASTSearchResource dictionaries\spellcheck\check_en.aut c:\check_en.aut
30+
```
31+
32+
This example uploads the file c:\check_en.aut to dictionaries\spellcheck\check_en.aut to the resource store.
33+
34+
## PARAMETERS
35+
36+
### -Path
37+
Partial URI within the resource store where the file will be uploaded.
38+
39+
```yaml
40+
Type: String
41+
Parameter Sets: (All)
42+
Aliases: ResourceURI
43+
Applicable: FAST Server for SharePoint 2010
44+
45+
Required: True
46+
Position: 1
47+
Default value: None
48+
Accept pipeline input: False
49+
Accept wildcard characters: False
50+
```
51+
52+
### -FilePath
53+
Path of the local resource to be uploaded.
54+
55+
```yaml
56+
Type: String
57+
Parameter Sets: (All)
58+
Aliases:
59+
Applicable: FAST Server for SharePoint 2010
60+
61+
Required: True
62+
Position: 2
63+
Default value: None
64+
Accept pipeline input: False
65+
Accept wildcard characters: False
66+
```
67+
68+
### CommonParameters
69+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
70+
71+
## INPUTS
72+
73+
## OUTPUTS
74+
75+
## NOTES
76+
77+
## RELATED LINKS
78+
79+
[Get-FASTSearchResource]()
80+
81+
[Remove-FASTSearchResource]()
82+
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
---
2+
external help file:
3+
applicable: FAST Server for SharePoint 2010
4+
schema: 2.0.0
5+
title: Add-FASTSearchSpelltuning
6+
---
7+
8+
# Add-FASTSearchSpelltuning
9+
10+
## SYNOPSIS
11+
Enables the spell tuning processor, used to fine-tune a spell check dictionary.
12+
13+
## SYNTAX
14+
15+
```
16+
Add-FASTSearchSpelltuning [<CommonParameters>]
17+
```
18+
19+
## DESCRIPTION
20+
This cmdlet activates alignment of the spell checking dictionary with the index, so that spell checking dictionaries are built from content that is fed into the index (not from standardized spelling dictionaries).
21+
22+
The Did You Mean feature is dictionary based; when spell tuning is activated, Did You Mean only suggests terms that are actually in the index.
23+
24+
For permissions and the most current information about FAST Search Server 2010 for SharePoint cmdlets, see the online documentation, (http://go.microsoft.com/fwlink/?LinkId=163227).
25+
26+
## EXAMPLES
27+
28+
### (FAST Server for SharePoint 2010)
29+
```
30+
C:\PS>
31+
```
32+
33+
## PARAMETERS
34+
35+
### CommonParameters
36+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
37+
38+
## INPUTS
39+
40+
## OUTPUTS
41+
42+
## NOTES
43+
44+
## RELATED LINKS
45+
46+
[Get-FASTSearchSpelltuningStatus]()
47+
48+
[Remove-FASTSearchSpelltuning]()
49+
50+
[Reset-FASTSearchSpelltuning]()
51+
Lines changed: 129 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,129 @@
1+
---
2+
external help file:
3+
applicable: FAST Server for SharePoint 2010
4+
schema: 2.0.0
5+
title: Clear-FASTSearchContentCollection
6+
---
7+
8+
# Clear-FASTSearchContentCollection
9+
10+
## SYNOPSIS
11+
Clears the content of a Microsoft FAST Search Server 2010 for SharePoint content collection.
12+
13+
## SYNTAX
14+
15+
```
16+
Clear-FASTSearchContentCollection [-Name] <String> [-Confirm] [-Force] [-WhatIf] [<CommonParameters>]
17+
```
18+
19+
## DESCRIPTION
20+
This cmdlet deletes from the index all items that are associated with the specified collection without removing the collection.
21+
22+
For permissions and the most current information about FAST Search Server 2010 for SharePoint cmdlets, see the online documentation, (http://go.microsoft.com/fwlink/?LinkId=163227).
23+
24+
## EXAMPLES
25+
26+
### ---------------EXAMPLE 1----------------- (FAST Server for SharePoint 2010)
27+
```
28+
C:\PS>Clear-FASTSearchContentCollection -Name newscollection
29+
```
30+
31+
This example clears the content of the "newscollection" content collection.
32+
33+
### ---------------EXAMPLE 2----------------- (FAST Server for SharePoint 2010)
34+
```
35+
C:\PS>Clear-FASTSearchContentCollection -Name newscollection -Force
36+
```
37+
38+
This example clears the content of the "newscollection" content collection.
39+
The user does not have to confirm the operation.
40+
41+
## PARAMETERS
42+
43+
### -Name
44+
The name of the content collection to clear.
45+
46+
```yaml
47+
Type: String
48+
Parameter Sets: (All)
49+
Aliases:
50+
Applicable: FAST Server for SharePoint 2010
51+
52+
Required: True
53+
Position: 1
54+
Default value: None
55+
Accept pipeline input: False
56+
Accept wildcard characters: False
57+
```
58+
59+
### -Confirm
60+
Activates user prompting to confirm the operation.
61+
If set, prompting is activated.
62+
63+
If Confirm is false (-Confirm:$false), you will not be prompted.
64+
65+
In cases where Confirm is not specified, the cmdlet will prompt if the $ConfirmPreference shell variable is equal to or greater than the ConfirmImpact setting of the cmdlet (HIGH).
66+
67+
```yaml
68+
Type: SwitchParameter
69+
Parameter Sets: (All)
70+
Aliases: cf
71+
Applicable: FAST Server for SharePoint 2010
72+
73+
Required: False
74+
Position: Named
75+
Default value: None
76+
Accept pipeline input: False
77+
Accept wildcard characters: False
78+
```
79+
80+
### -Force
81+
Overrides any user prompting settings so the user is not asked to confirm the operation.
82+
83+
```yaml
84+
Type: SwitchParameter
85+
Parameter Sets: (All)
86+
Aliases:
87+
Applicable: FAST Server for SharePoint 2010
88+
89+
Required: False
90+
Position: Named
91+
Default value: None
92+
Accept pipeline input: False
93+
Accept wildcard characters: False
94+
```
95+
96+
### -WhatIf
97+
Displays a message that describes the effect of the command instead of executing the command.
98+
For more information, type the following command: get-help about_commonparameters
99+
100+
```yaml
101+
Type: SwitchParameter
102+
Parameter Sets: (All)
103+
Aliases: wi
104+
Applicable: FAST Server for SharePoint 2010
105+
106+
Required: False
107+
Position: Named
108+
Default value: None
109+
Accept pipeline input: False
110+
Accept wildcard characters: False
111+
```
112+
113+
### CommonParameters
114+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
115+
116+
## INPUTS
117+
118+
## OUTPUTS
119+
120+
## NOTES
121+
122+
## RELATED LINKS
123+
124+
[New-FASTSearchContentCollection]()
125+
126+
[Remove-FASTSearchContentCollection]()
127+
128+
[Get-FASTSearchContentCollection]()
129+
Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
---
2+
external help file:
3+
applicable: FAST Server for SharePoint 2010
4+
schema: 2.0.0
5+
title: Get-FASTSearchContentCollection
6+
---
7+
8+
# Get-FASTSearchContentCollection
9+
10+
## SYNOPSIS
11+
Retrieves Microsoft FAST Search Server 2010 for SharePoint content collections.
12+
13+
## SYNTAX
14+
15+
```
16+
Get-FASTSearchContentCollection [[-Name] <String>] [<CommonParameters>]
17+
```
18+
19+
## DESCRIPTION
20+
This cmdlet retrieves all FAST Search Server 2010 for SharePoint content collections.
21+
When a collection name is specified, a single collection is retrieved, if it exists.
22+
23+
For permissions and the most current information about FAST Search Server 2010 for SharePoint cmdlets, see the online documentation, (http://go.microsoft.com/fwlink/?LinkId=163227).
24+
25+
## EXAMPLES
26+
27+
### ---------------EXAMPLE 1----------------- (FAST Server for SharePoint 2010)
28+
```
29+
C:\PS>Get-FASTSearchContentCollection
30+
```
31+
32+
This example retrieves all FAST Search Server 2010 for SharePoint content collections.
33+
34+
### ---------------EXAMPLE 2----------------- (FAST Server for SharePoint 2010)
35+
```
36+
C:\PS>Get-FASTSearchContentCollection -Name newscollection
37+
```
38+
39+
This example retrieves the "newscollection" content collection.
40+
41+
## PARAMETERS
42+
43+
### -Name
44+
The name of the FAST Search Server 2010 for SharePoint collection to retrieve.
45+
46+
```yaml
47+
Type: String
48+
Parameter Sets: (All)
49+
Aliases:
50+
Applicable: FAST Server for SharePoint 2010
51+
52+
Required: False
53+
Position: 1
54+
Default value: None
55+
Accept pipeline input: False
56+
Accept wildcard characters: False
57+
```
58+
59+
### CommonParameters
60+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
61+
62+
## INPUTS
63+
64+
## OUTPUTS
65+
66+
## NOTES
67+
68+
## RELATED LINKS
69+
70+
[Clear-FASTSearchContentCollection]()
71+
72+
[New-FASTSearchContentCollection]()
73+
74+
[Remove-FASTSearchContentCollection]()
75+

0 commit comments

Comments
 (0)