Install-SPService
Published: May 12, 2010
Installs and provisions services on a farm.
Install-SPService [-AssignmentCollection <SPAssignmentCollection>] [-Provision <SwitchParameter>]
Parameters
| Parameter | Required | Type | Description | ||
|---|---|---|---|---|---|
|
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.
|
||
|
Provision |
Optional |
System.Management.Automation.SwitchParameter |
Specifies default settings when installing a standalone service application. |
Detailed Description
The Install-SPService cmdlet installs and optionally provisions services on a farm. This cmdlet installs all services, service instances, and service proxies specified in the registry on the local server computer. Use this cmdlet in a script that you build to install and deploy a SharePoint farm or to install a custom developed service.
Input Types
Return Types
------------------EXAMPLE------------------
Install-SPService
This example installs all services, service instances and service proxies specified in the registry on the local server computer.
Change History
| Date | Description | Reason |
|---|---|---|
|
May 12, 2010 |
Initial publication |
|

Note: