Set-SPProjectWebInstance

 

Applies to: SharePoint Server 2010, Project Server 2010

Topic Last Modified: 2011-07-11

Sets the properties of an instance of Microsoft Project Web App.

Syntax

Set-SPProjectWebInstance -AdminAccount <String> -ArchiveDbname <String> -DraftDbname <String> -PrimaryDbserver <String> -PublishedDbname <String> -ReportingDbname <String> -ReportingDbserver <String> -Url <String> [-AssignmentCollection <SPAssignmentCollection>] [-PrimaryDBMirrorServer <String>] [-ReportingDBMirrorServer <String>] [-Wait <SwitchParameter>]

Detailed Description

The Set-SPProjectWebInstance cmdlet sets the properties of an instance of Project Web App.

Parameters

Parameter Required Type Description

AdminAccount

Required

System.String

Specifies the administrator account to use for the PWA instance.

The type must be a valid name of an administrator account; for example, MyAdminAcct1.

ArchiveDbname

Required

System.String

Specifies the name of the archive database that the instance of Project Web App will use.

The type must be a valid name of an existing Project Server Archive database.

DraftDbname

Required

System.String

Specifies the name of the draft database that the instance of Project Web App will use.

The type must be a valid name of an existing Project Server Draft database.

PrimaryDbserver

Required

System.String

Specifies the instance of SQL Server where the specified Draft, Archive, and Published databases reside.

PublishedDbname

Required

System.String

Specifies the name of the published database that the instance of Project Web App will use.

The type must be a valid name of an existing Project Server Published database.

ReportingDbname

Required

System.String

Specifies the name of the reporting database that the instance of Project Web App will use.

The type must be a valid name of an existing Project Server Reporting database.

ReportingDbserver

Required

System.String

Specifies the instance of SQL Server where the specified Reporting database resides.

ServiceApplication

Optional

Microsoft.Office.Project.Server.Cmdlet.PsiServiceApplicationPipeBind

Specifies the Project Server Service application associated with the PWA instance.

The type must be a valid GUID, in the form 12345678-90ab-cdef-1234-567890bcdefgh; a valid name of a Project Server Service application (for example, ProjectWebApp1); or an instance of a valid PsiServiceApplication object.

Url

Required

System.String

Specifies the URL of the PWA instance.

The type must be a valid URL, in the form http://server_name/PWA_name.

AssignmentCollection

Optional

Microsoft.SharePoint.PowerShell.SPAssignmentCollection

Manages objects for the purpose of proper disposal. Use of objects, such as SPWeb or SPSite, can use large amounts of memory and use of these objects in Windows PowerShell scripts requires proper memory management. Using the SPAssignment object, you can assign objects to a variable and dispose of the objects after they are needed to free up memory. When SPWeb, SPSite, or SPSiteAdministration objects are used, the objects are automatically disposed of if an assignment collection or the Global parameter is not used.

Note

When the Global parameter is used, all objects are contained in the global store. If objects are not immediately used, or disposed of by using the Stop-SPAssignment command, an out-of-memory scenario can occur.

Wait

Optional

System.Management.Automation.SwitchParameter

Specifies whether to run the job immediately or queue it.

Input Types

Return Types

Example

---------------------EXAMPLE----------------------

Set-SPProjectWebInstance -Url "https://SERVER/pwa" -AdminAccount "CONTOSO\FarmAdmin" -PrimaryDbserver "SQLSERVER1" -PublishedDbname "ProjectServer_Published" -ArchiveDbname "ProjectServer_Archive" -DraftDbname "ProjectServer_Draft" -ReportingDbserver "SQLSERVER2" -ReportingDbname "ProjectServer_Reporting"

This example updates a PWA instance with specified parameters.