Skip to content

SPProjectServerAdditionalSettings

dscbot edited this page Mar 17, 2023 · 11 revisions

SPProjectServerAdditionalSettings

Parameters

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?

Description

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).

Examples

Example 1

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
        }
    }
}
Clone this wiki locally