Set-SPProjectPermissionMode
Applies to: Project Server 2013
Topic Last Modified: 2013-12-18
Changes the permission mode for a Project Web App instance. Running this cmdlet deletes all security settings and reverts to the default settings for the specified mode.
Set-SPProjectPermissionMode [-Url] <Uri> [-Mode] <SharePoint | ProjectServer | UninitializedSharePoint | UninitializedProjectServer> [[-AdministratorAccount] <String>] [-AssignmentCollection <SPAssignmentCollection>]
The Set-SPProjectPermissionMode cmdlet changes the permission mode for the specified Project Web App instance.
Warning: |
|---|
| Switching security modes deletes all permissions configuration information for the specified Project Web App instance and reverts to the default settings for the specified mode. |
| Parameter | Required | Type | Description | ||
|---|---|---|---|---|---|
| Url | Required | System.Uri | Specifies the URL of the Project Web App instance for which the permission mode is to be changed. The type must be a valid URL, in the form http://<ServerName>/<PWAName>. | ||
| Mode | Required | Microsoft.Office.Project.Server.Library.Security+PermissionMode | Specifies the mode into which the instance should be changed. The type must be a valid permission mode, in the form | ||
| AdministratorAccount | Optional | System.String | The name of the account to be added as a Project Web App administrator. | ||
| 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.
|
--------------EXAMPLE 1-------------------
Set-SPPRojectPermissionMode -Url http://AppServer/pwa -AdministratorAccount contoso\John.Woods -Mode ProjectServer
This example shows the syntax for transitioning a server into Project Server permission mode.
--------------EXAMPLE 2-------------------
Set-SPPRojectPermissionMode -Url http://AppServer/pwa -AdministratorAccount contoso\John.Woods -Mode SharePoint
This example shows the syntax for transitioning a server into SharePoint permission mode.

Warning:
Note: