New-SPStateServiceApplicationProxy
Published: July 16, 2012
Applies to: SharePoint Server 2013 Enterprise
Creates a proxy for a state service application.
New-SPStateServiceApplicationProxy [-ServiceApplication] <SPStateServiceApplicationPipeBind> [-AssignmentCollection <SPAssignmentCollection>] [-DefaultProxyGroup <SwitchParameter>] [-Name <String>]
Parameters
| Parameter | Required | Type | Description | ||
|---|---|---|---|---|---|
| ServiceApplication | Required | Microsoft.Office.Server.Administration.SPStateServiceApplicationPipeBind | Specifies the state service application to associate with the new proxy. The type must be a valid name of a state service application (for example, StateServiceApp1); a valid GUID, in the form 12345678-90ab-cdef-1234-567890bcdefgh; or an instance of a valid SPStateServiceApplication object. | ||
| 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.
| ||
| DefaultProxyGroup | Optional | System.Management.Automation.SwitchParameter | Specifies that the service application proxy is added to the farm’s default proxy group. | ||
| Name | Optional | System.String | Specifies the display name of the new proxy. The type must be a valid name of a SQL Server database; for example, SessionStateDB1. Service application proxy; for example, StateSvcAppProxy1. |
Detailed Description
The New-SPStateServiceApplicationProxy cmdlet creates a proxy for a state service application.
Input Types
Return Types
--------------EXAMPLE-------------------
Get-SPServiceApplication –Identity 9703f7e2-9521-47c3-bd92-80e3eeba391b | New-SPStateServiceApplicationProxy -DefaultProxyGroup
This example creates a new service application proxy, associates it with a provided service application, and adds it to the farm’s default proxy group.
Change History
| Date | Description |
|---|---|
| July 16, 2012 | Initial publication |

Note: