Skip to content

Commit 8688bd8

Browse files
authored
Merge pull request MicrosoftDocs#844 from tseward/patch-478
Update Get-SPSiteMaster.md
2 parents 2218003 + 87f8ec0 commit 8688bd8

File tree

1 file changed

+22
-6
lines changed

1 file changed

+22
-6
lines changed

sharepoint/sharepoint-ps/sharepoint-server/Get-SPSiteMaster.md

Lines changed: 22 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ schema: 2.0.0
88
# Get-SPSiteMaster
99

1010
## SYNOPSIS
11-
{{Fill in the Synopsis}}
11+
Returns site master information.
1212

1313
## SYNTAX
1414

@@ -18,21 +18,37 @@ Get-SPSiteMaster [-ContentDatabase] <SPContentDatabasePipeBind>
1818
```
1919

2020
## DESCRIPTION
21-
{{Fill in the Description}}
21+
Use the Get-SPSiteMaster cmdlet to display site master information in the farm.
22+
23+
Typically the following information is displayed:
24+
25+
* ContentDatabase
26+
27+
* SiteId
28+
29+
* TemplateName
30+
31+
* Language
32+
33+
* CompatibilityLevel
34+
35+
* FeaturesToActivateOnCopy
2236

2337
## EXAMPLES
2438

2539
### Example 1
2640
```
27-
PS C:\> {{ Add example code here }}
41+
PS C:\>Get-SPSiteMaster -ContentDatabase WSS_Content
2842
```
2943

30-
{{ Add example description here }}
44+
This example returns the site master in the database WSS_Content.
3145

3246
## PARAMETERS
3347

3448
### -AssignmentCollection
35-
{{Fill AssignmentCollection Description}}
49+
Manages objects for the purpose of proper disposal. Use of objects, such as SPWeb or SPSite, can use large amounts of memory and use of these objects in Windows PowerShell scripts requires proper memory management. Using the SPAssignment object, you can assign objects to a variable and dispose of the objects after they are needed to free up memory. When SPWeb, SPSite, or SPSiteAdministration objects are used, the objects are automatically disposed of if an assignment collection or the Global parameter is not used.
50+
51+
When the Global parameter is used, all objects are contained in the global store. If objects are not immediately used, or disposed of by using the Stop-SPAssignment command, an out-of-memory scenario can occur.
3652

3753
```yaml
3854
Type: SPAssignmentCollection
@@ -48,7 +64,7 @@ Accept wildcard characters: False
4864
```
4965
5066
### -ContentDatabase
51-
{{Fill ContentDatabase Description}}
67+
Specifies the name of the database to get the list of Site Masters. For example, WSS_Content.
5268
5369
```yaml
5470
Type: SPContentDatabasePipeBind

0 commit comments

Comments
 (0)