New-SPAppManagementServiceApplication
Published: July 16, 2012
Applies to: SharePoint Foundation 2013 | SharePoint Server 2013 Enterprise
Creates an App Management Service application.
New-SPAppManagementServiceApplication -ApplicationPool <SPIisWebServiceApplicationPoolPipeBind> [-AssignmentCollection <SPAssignmentCollection>] [-Confirm [<SwitchParameter>]] [-DatabaseCredentials <PSCredential>] [-DatabaseName <String>] [-DatabaseServer <String>] [-FailoverDatabaseServer <String>] [-Name <String>] [-WhatIf [<SwitchParameter>]]
Parameters
| Parameter | Required | Type | Description | ||
|---|---|---|---|---|---|
| ApplicationPool | Required | Microsoft.SharePoint.PowerShell.SPIisWebServiceApplicationPoolPipeBind | Specifies the application pool of the service application. | ||
| 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.
| ||
| Confirm | Optional | System.Management.Automation.SwitchParameter | Prompts you for confirmation before executing the command. For more information, type the following command: get-help about_commonparameters | ||
| DatabaseCredentials | Optional | System.Management.Automation.PSCredential | Specifies the credentials to use when creating the service application database. These credentials will have owner rights on the newly created service application database. If a value is not provided, the current user’s credentials are used by default. | ||
| DatabaseName | Optional | System.String | Specifies the name of the service application database to be created. If a value is not provided, a default database name is provided. | ||
| DatabaseServer | Optional | System.String | Specifies the server of the service application database to be created, If a value is not provided, the default database server is used. | ||
| FailoverDatabaseServer | Optional | System.String | Specifies the failover server of the service application database to be created, If a value is not provided, there will not be a failover server for the service application database. | ||
| Name | Optional | System.String | Specifies the name of the service application to be created. If not provided, the default name is used. | ||
| WhatIf | Optional | System.Management.Automation.SwitchParameter | Displays a message that describes the effect of the command instead of executing the command. For more information, type the following command: get-help about_commonparameters |
Detailed Description
Use the New-SPAppManagementServiceApplication cmdlet to create an App Management Service application with the specified name on the specified application pool with a single database which specified parameters create.
Input Types
Return Types
--------------EXAMPLE----------
New-SPAppManagementServiceApplication -Name AppManagement -DatabaseServer MyDatabaseServer -DatabaseName AppManagementDB –ApplicationPool MyServiceAppPool
This example creates an App Management Service application named AppManagement with a database server MyDatabaseServer and database name AppManagementDB. The new service application will run under the app pool named MyServiceAppPool
Change History
| Date | Description |
|---|---|
| July 16, 2012 | Initial publication |

Note: