New-SPVisioServiceApplication
Published: May 12, 2010
Adds a new Visio Services application to a farm.
New-SPVisioServiceApplication -ApplicationPool <SPIisWebServiceApplicationPoolPipeBind> [-AddToDefaultGroup <SwitchParameter>] [-AssignmentCollection <SPAssignmentCollection>] [-Confirm [<SwitchParameter>]] [-Name <String>] [-WhatIf [<SwitchParameter>]]
Parameters
| Parameter | Required | Type | Description | ||
|---|---|---|---|---|---|
|
ApplicationPool |
Required |
Microsoft.SharePoint.PowerShell.SPIisWebServiceApplicationPoolPipeBind |
Specifies the existing IIS application pool in which to run the Web service for the service application. The type must be a valid GUID, in the form 12345678-90ab-cdef-1234-567890bcdefgh; a valid name of an application pool (for example, AppPoolName1); or an instance of a valid IISWebServiceApplicationPool object. |
||
|
AddToDefaultGroup |
Optional |
System.Management.Automation.SwitchParameter |
Specifies that a default proxy is created for the new Visio Services 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 |
||
|
Name |
Optional |
Microsoft.Office.Visio.Server.Cmdlet.SPVisioServiceApplicationPipeBind |
Specifies the Visio Services application to create. The type must be a valid name of a Visio Service application; for example, MyVisioService1. |
||
|
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
The New-SPVisioServiceApplication cmdlet adds a new Visio Services application to a farm.
Input Types
Return Types
----------------EXAMPLE 1---------------------
New-SPVisioServiceApplication -Identity "VGS2" -ServiceApplicationPool "SharePoint Web Services Default" -CreateDefaultProxy
This example creates a new Visio Services application VGS2, and also creates a service application proxy associated with it.
----------------EXAMPLE 2---------------------
Get-SPIISWebServiceApplicationPool "SharePoint Web Services System Default" | New-SPVisioServiceApplication "VGS3"
This example creates a new Visio Services application VGS3 without creating an associated service application proxy. You can pipe the results from the Get-SPIISWebServiceApplicationPool cmdlet.
Change History
| Date | Description | Reason |
|---|---|---|
|
May 12, 2010 |
Initial publication |
|

Note: