-
Notifications
You must be signed in to change notification settings - Fork 107
SPProjectServerAdditionalSettings
dscbot edited this page Mar 17, 2023
·
11 revisions
Parameter | Attribute | DataType | Description | Allowed Values |
---|---|---|---|---|
Url | Key | String | The default zone URL of the Project site to manage settings at | |
ProjectProfessionalMinBuildNumber | Write | String | What is the minimum build number for the Project Professional client that can connect? | |
ServerCurrency | Write | String | What is the default server currency? | |
EnforceServerCurrency | Write | Boolean | Should all projects be forced to use the server currency? |
Type: Distributed Requires CredSSP: No
This resource is used to manage the "additional settings" for a PWA instance (based on what is in the 'additional settings' page of the web interface).
This example shows how to apply additional settings to the PWA site
Configuration Example
{
param
(
[Parameter(Mandatory = $true)]
[PSCredential]
$SetupAccount
)
Import-DscResource -ModuleName SharePointDsc
node localhost
{
SPProjectServerAdditionalSettings Settings
{
Url = "http://projects.contoso.com/pwa"
ServerCurrency = "AUD"
EnforceServerCurrency = $true
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