-
Notifications
You must be signed in to change notification settings - Fork 107
SPManagedPath
Parameter | Attribute | DataType | Description | Allowed Values |
---|---|---|---|---|
WebAppUrl | Key | String | The URL of the web application to apply the managed path to - this is ignored for host header web applications | |
RelativeUrl | Key | String | The relative URL of the managed path | |
Explicit | Required | Boolean | Should the host header be explicit? If false then it is a wildcard | |
HostHeader | Required | Boolean | Is this a host header web application? | |
Ensure | Write | String | Present ensures managed path exists, absent ensures it is removed |
Present , Absent
|
Type: Distributed Requires CredSSP: No
This resource is responsible for creating managed paths associated with a specific web application. The WebAppUrl parameter is used to specify the web application to create the path against, and the RelativeUrl parameter lets you set the URL. Explicit when set to true will create an explicit inclusion path, if set to false the path is created as wildcard inclusion. If you are using host named site collections set HostHeader to true and the path will be created as a host header path to be applied for host named site collections.
The default value for the Ensure parameter is Present. When not specifying this parameter, the managed path is created.
This example shows how to deploy an explicit managed path to a specifici web application
Configuration Example
{
param
(
[Parameter(Mandatory = $true)]
[PSCredential]
$SetupAccount
)
Import-DscResource -ModuleName SharePointDsc
node localhost
{
SPManagedPath TestManagedPath
{
WebAppUrl = "http://sharepoint.contoso.com"
RelativeUrl = "example"
Explicit = $true
HostHeader = $false
PsDscRunAsCredential = $SetupAccount
}
}
}
This example shows how to add a wildcard managed path to a specific web application
Configuration Example
{
param
(
[Parameter(Mandatory = $true)]
[PSCredential]
$SetupAccount
)
Import-DscResource -ModuleName SharePointDsc
node localhost
{
SPManagedPath TestManagedPath
{
WebAppUrl = "http://sharepoint.contoso.com"
RelativeUrl = "teams"
Explicit = $false
HostHeader = $true
PsDscRunAsCredential = $SetupAccount
}
}
}
This example shows how to remove a wildcard managed path from a specific web application
Configuration Example
{
param
(
[Parameter(Mandatory = $true)]
[PSCredential]
$SetupAccount
)
Import-DscResource -ModuleName SharePointDsc
node localhost
{
SPManagedPath TestManagedPath
{
WebAppUrl = "http://sharepoint.contoso.com"
RelativeUrl = "teams"
Explicit = $false
HostHeader = $true
Ensure = "Absent"
PsDscRunAsCredential = $SetupAccount
}
}
}
- Home
- Getting Started
- Pre-requisites
- Installing the module
- Exporting SharePoint Configuration
- Creating Configuration Files
- Pre-created Examples
- Creating an Azure development environment
- Understanding Resources & Syntax
- Remote PowerShell Authentication
- Contributing to SharePointDsc
- Other useful modules for SharePoint DSC configurations