Skip to content

Commit cf591d2

Browse files
committed
Changed references from host-header site collections to host-named site collections
1 parent de3888f commit cf591d2

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

sharepoint/sharepoint-ps/sharepoint-server/Copy-SPSite.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ Accept wildcard characters: False
113113
```
114114
115115
### -HostHeaderWebApplication
116-
Use when the site collection is a host header named site collection that allows the site to land on the correct web application.
116+
Use when the site collection is a host-named site collection that allows the site to land on the correct web application.
117117
118118
```yaml
119119
Type: String

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ This cmdlet contains more than one parameter set.
3232
You may only use parameters from one parameter set, and you may not combine parameters from different parameter sets.
3333
For more information about how to use parameter sets, see Cmdlet Parameter Sets (http://go.microsoft.com/fwlink/?LinkID=187810).
3434

35-
The Get-SPManagedPath cmdlet returns the SharePoint managed path that matches the provided Identity for either a Web application, site collection or for all HostHeader site collections.
35+
The Get-SPManagedPath cmdlet returns the SharePoint managed path that matches the provided Identity for either a Web application, site collection or for all host-named site collections.
3636
If an Identity parameter is not provided, all managed paths for the given scope are returned.
3737

38-
HostHeader sites (no matter the Web application in which they are contained) share a single set of managed paths.
39-
Use the HostHeader parameter to return host header managed paths.
38+
Host-named sites (no matter the Web application in which they are contained) share a single set of managed paths.
39+
Use the HostHeader parameter to return host-named scoped managed paths.
4040

4141
For permissions and the most current information about Windows PowerShell for SharePoint Products, see the online documentation at http://go.microsoft.com/fwlink/p/?LinkId=251831 (http://go.microsoft.com/fwlink/p/?LinkId=251831).
4242

@@ -54,7 +54,7 @@ This example returns all managed paths for the specified Web application.
5454
C:\PS>Get-SPManagedPath -identity "Sites" -HostHeader
5555
```
5656

57-
This example gets the Sites managed path from the HostHeader managed paths.
57+
This example gets the Sites managed path from the host-named scoped managed paths.
5858

5959
## PARAMETERS
6060

@@ -77,7 +77,7 @@ Accept wildcard characters: False
7777
```
7878
7979
### -HostHeader
80-
If provided, the managed paths returned are for the HostHeader sites in the farm.
80+
If provided, the managed paths returned are for the host-named sites in the farm.
8181
8282
```yaml
8383
Type: SwitchParameter

sharepoint/sharepoint-ps/sharepoint-server/New-SPManagedPath.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ You may only use parameters from one parameter set and you may not combine param
3131
For more information about how to use parameter sets, see Cmdlet Parameter Sets (http://go.microsoft.com/fwlink/?LinkID=187810).
3232

3333
The `New-SPManagedPath` cmdlet adds a new managed path to a given Web application or for use with all host header site collections.
34-
If the HostHeader switch is provided, the managed path is shared among all host header site collections; otherwise, a Web application must be specified to create this managed path within.
34+
If the HostHeader switch is provided, the managed path is shared among all host-named site collections; otherwise, a Web application must be specified to create this managed path within.
3535
The relative URL is a partial URL that represents the managed path.
3636
When the slash mark (/) is used, the root is defined.
3737
If the Explicit parameter is not provided, the new managed path is a wildcard path.

sharepoint/sharepoint-ps/sharepoint-server/New-SPSite.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ C:\PS>$w = Get-SPWebApplication http://<site name>
4848
C:\PS>New-SPSite http://www.contoso.com -OwnerAlias "DOMAIN\jdow" -HostHeaderWebApplication $w -Name "Contoso" -Template "STS#0"
4949
```
5050

51-
This example creates a host header site collection.
51+
This example creates a host-named site collection.
5252
Because the template is provided, the root web of this site collection will be created.
5353

5454

@@ -219,7 +219,7 @@ Accept wildcard characters: False
219219
```
220220

221221
### -HostHeaderWebApplication
222-
Specifies that if the URL provided is a host header, the HostHeaderWebApplication parameter must be the name, URL, GUID, or SPWebApplication object for the web application in which this site collection is created.
222+
Specifies that if the URL provided is to be a host-named site collection, the HostHeaderWebApplication parameter must be the name, URL, GUID, or SPWebApplication object for the web application in which this site collection is created.
223223
If no value is specified, the value is left blank.
224224

225225
The type must be a valid name in one of the following forms:

sharepoint/sharepoint-ps/sharepoint-server/Remove-SPManagedPath.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ For more information about how to use parameter sets, see Cmdlet Parameter Sets
3333
The `Remove-SPManagedPath` cmdlet deletes the managed path specified by the Identity parameter from the host header or the Web application.
3434
The Identity must be the partial URL of the managed path to be deleted.
3535

36-
If you are using host headers, specify the HostHeader parameter.
37-
To delete a HostHeader managed path, provide the HostHeader switch.
36+
If you are using host-named site collections, specify the HostHeader parameter.
37+
To delete a host-named site collection managed path, provide the HostHeader switch.
3838
Otherwise, you must specify the Web application that contains the managed path to be deleted.
3939

4040
For permissions and the most current information about Windows PowerShell for SharePoint Products, see the online documentation at http://go.microsoft.com/fwlink/p/?LinkId=251831 (http://go.microsoft.com/fwlink/p/?LinkId=251831).
@@ -47,7 +47,7 @@ For permissions and the most current information about Windows PowerShell for Sh
4747
C:\PS>Remove-SPManagedPath "sites" -HostHeader
4848
```
4949

50-
This example removes the sites managed path from the list of HostHeader managed paths.
50+
This example removes the sites managed path from the list of host-named site collection managed paths.
5151

5252
Depending on the confirmation level of the local system, the preceding example can prompt prior to execution.
5353

0 commit comments

Comments
 (0)