Skip to content

Commit 631abb5

Browse files
authored
Merge pull request MicrosoftDocs#846 from tseward/patch-480
Update Get-SPWebApplicationAppDomain.md
2 parents f42ede7 + 13e4b85 commit 631abb5

File tree

1 file changed

+29
-27
lines changed

1 file changed

+29
-27
lines changed

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

Lines changed: 29 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
external help file:
3-
applicable: SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016
3+
applicable: SharePoint Server 2013, SharePoint Server 2016
44
title: Get-SPWebApplicationAppDomain
55
schema: 2.0.0
66
---
@@ -9,9 +9,7 @@ schema: 2.0.0
99

1010
## SYNOPSIS
1111

12-
{{Fill in the Synopsis}}
13-
14-
12+
Returns all app domains for a specific web application.
1513

1614
## SYNTAX
1715

@@ -29,36 +27,36 @@ Get-SPWebApplicationAppDomain [[-Identity] <SPAppDomainPipeBind>] -WebApplicatio
2927

3028
## DESCRIPTION
3129

32-
{{Fill in the Description}}
33-
30+
This cmdlet contains more than one parameter set. You may only use parameters from one parameter set, and you may not combine parameters from different parameter sets. For more information about how to use parameter sets, see Cmdlet Parameter Sets (http://go.microsoft.com/fwlink/?LinkID=187810).
3431

32+
Use the Get-SPWebApplicationAppDoman cmdlet to return all app domains for a specific web application or for all web applications. If you do not specify parameters, the default zone is used.
3533

3634
## EXAMPLES
3735

3836
### -----------EXAMPLE 1---------
3937
```
40-
C:\PS>Get-SPWebApplicationAppDomain
38+
PS C:\>Get-SPWebApplicationAppDomain
4139
```
4240

4341
Returns a list of SPAppDomain objects, one for each of the app domains for all web applications in the farm.
4442

4543
### -----------EXAMPLE 2---------
4644
```
47-
C:\PS>Get-SPWebApplicationAppDomain -Zone Default
45+
PS C:\>Get-SPWebApplicationAppDomain -Zone Default
4846
```
4947

5048
Returns a list of SPAppDomain objects, one for each of the app domains for the Default zone for all web applications in the farm.
5149

5250
### -----------EXAMPLE 3---------
5351
```
54-
C:\PS>Get-SPWebApplicationAppDomain -WebApplication http://www.contoso.com
52+
PS C:\>Get-SPWebApplicationAppDomain -WebApplication http://www.contoso.com
5553
```
5654

5755
Returns a list of SPAppDomain objects, one for each of all the app domains for the specified web application for all zones.
5856

5957
### -----------EXAMPLE 4---------
6058
```
61-
C:\PS>Get-SPWebApplicationAppDomain -AppDomain contosoapps.com
59+
PS C:\>Get-SPWebApplicationAppDomain -AppDomain contosoapps.com
6260
```
6361

6462
Returns a list of SPAppDomain objects, one for each web application and zone pair that shares the specified app domain.
@@ -67,15 +65,13 @@ Returns a list of SPAppDomain objects, one for each web application and zone pai
6765

6866
### -Identity
6967

70-
{{Fill Identity Description}}
71-
72-
68+
Specifies the string of a domain name (that is, contoso.com) or a SPAppDomain object.
7369

7470
```yaml
7571
Type: SPAppDomainPipeBind
7672
Parameter Sets: (All)
7773
Aliases:
78-
Applicable: SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016
74+
Applicable: SharePoint Server 2013, SharePoint Server 2016
7975

8076
Required: False
8177
Position: 1
@@ -86,15 +82,13 @@ Accept wildcard characters: False
8682
8783
### -AppDomain
8884
89-
{{Fill AppDomain Description}}
90-
91-
85+
Specifies the URI of the app domain.
9286
9387
```yaml
9488
Type: String
9589
Parameter Sets: ResourceName
9690
Aliases:
97-
Applicable: SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016
91+
Applicable: SharePoint Server 2013, SharePoint Server 2016
9892

9993
Required: True
10094
Position: Named
@@ -105,15 +99,13 @@ Accept wildcard characters: False
10599
106100
### -WebApplication
107101
108-
{{Fill WebApplication Description}}
109-
110-
102+
Specifies the GUID, URI, or name of the web application for which the app domain is being configured.
111103
112104
```yaml
113105
Type: SPWebApplicationPipeBind
114106
Parameter Sets: WebApplication
115107
Aliases:
116-
Applicable: SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016
108+
Applicable: SharePoint Server 2013, SharePoint Server 2016
117109

118110
Required: True
119111
Position: Named
@@ -124,15 +116,15 @@ Accept wildcard characters: False
124116
125117
### -AssignmentCollection
126118
127-
{{Fill AssignmentCollection Description}}
128-
119+
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.
129120
121+
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.
130122
131123
```yaml
132124
Type: SPAssignmentCollection
133125
Parameter Sets: (All)
134126
Aliases:
135-
Applicable: SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016
127+
Applicable: SharePoint Server 2013, SharePoint Server 2016
136128

137129
Required: False
138130
Position: Named
@@ -143,15 +135,25 @@ Accept wildcard characters: False
143135
144136
### -Zone
145137
146-
{{Fill Zone Description}}
138+
Specifies the security zone to which the app domain will be assigned.
139+
140+
* Default
141+
142+
* Intranet
143+
144+
* Internet
145+
146+
* Extranet
147147
148+
* Custom
148149
150+
If no value is specified, Default is applied.
149151
150152
```yaml
151153
Type: SPUrlZone
152154
Parameter Sets: (All)
153155
Aliases:
154-
Applicable: SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016
156+
Applicable: SharePoint Server 2013, SharePoint Server 2016
155157

156158
Required: False
157159
Position: Named

0 commit comments

Comments
 (0)