-
Notifications
You must be signed in to change notification settings - Fork 107
SPAccessServices2010
Parameter | Attribute | DataType | Description | Allowed Values |
---|---|---|---|---|
Name | Key | String | The name of the service application | |
ApplicationPool | Required | String | The name of the application pool to run the service app in | |
Ensure | Write | String | Present ensures service app exists, absent ensures it is removed |
Present , Absent
|
Type: Distributed Requires CredSSP: No
This resource is responsible for creating Access Services 2010 Application instances within the local SharePoint farm. The resource will provision and configure the Access Services 2010 Service Application.
The default value for the Ensure parameter is Present. When not specifying this parameter, the service application is provisioned.
NOTE: Since SharePoint Server Subscription Edition the Access Services 2010 does no longer exists. See What's deprecated or removed from SharePoint Server 2019 for more info.
This example shows how to deploy Access Services 2010 to the local SharePoint farm.
Configuration Example
{
param
(
[Parameter(Mandatory = $true)]
[PSCredential]
$SetupAccount
)
Import-DscResource -ModuleName SharePointDsc
node localhost
{
SPAccessServices2010 Access2010Services
{
Name = "Access 2010 Services Service Application"
ApplicationPool = "SharePoint Service Applications"
PsDscRunAsCredential = $SetupAccount
}
}
}
This example shows how to remove a specific Access Services 2010 from the local SharePoint farm. Because Application pool is a required parameters, but is not actually needed to remove the app, any text value can be supplied for these as they will be ignored.
Configuration Example
{
param
(
[Parameter(Mandatory = $true)]
[PSCredential]
$SetupAccount
)
Import-DscResource -ModuleName SharePointDsc
node localhost
{
SPAccessServices2010 Access2010Services
{
Name = "Access 2010 Services Service Application"
ApplicationPool = "n/a"
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