File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
sharepoint/sharepoint-ps/sharepoint-server Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ For permissions and the most current information about Windows PowerShell for Sh
37
37
38
38
## EXAMPLES
39
39
40
- ### ------------------EXAMPLE------------------
40
+ ### ------------------EXAMPLE 1 ------------------
41
41
```
42
42
$appPool = New-SPServiceApplicationPool -Name 'SharePoint Web Services Default' -Account 'CONTOSO\ServiceApps'
43
43
New-SPEnterpriseSearchServiceApplication -Name "Search Service Application" -ApplicationPool $appPool
@@ -47,6 +47,15 @@ This example creates a new search service application named NewSSA in a new appl
47
47
48
48
A search service application that is created in this manner will have active search topology, but no search components.
49
49
50
+ ### ------------------EXAMPLE 2------------------
51
+ ```
52
+ $appPool = New-SPServiceApplicationPool -Name 'SharePoint Web Services Default' -Account 'CONTOSO\ServiceApps'
53
+ New-SPEnterpriseSearchServiceApplication -Name "Search Service Application" -ApplicationPool $appPool -DatabaseName SearchServiceAppDB
54
+ ```
55
+
56
+ This example creates a new search service application named NewSSA in a new application pool and specifies the name of the Database.
57
+
58
+ A search service application that is created in this manner will have active search topology, but no search components.
50
59
51
60
## PARAMETERS
52
61
You can’t perform that action at this time.
0 commit comments