Uninstall-SPWebPartPack
Applies to: SharePoint Server 2010, SharePoint Foundation 2010
Topic Last Modified: 2010-02-15
Uninstalls the specified Web Part package.
Uninstall-SPWebPartPack [-Identity] <String> [-AssignmentCollection <SPAssignmentCollection>] [-Confirm [<SwitchParameter>]] [-Language <UInt32>] [-WebApplication <SPWebApplicationPipeBind>] [-WhatIf [<SwitchParameter>]]
The Uninstall-SPWebPartPack cmdlet uninstalls the Web Part package specified by the Identity parameter.
| Parameter | Required | Type | Description | ||
|---|---|---|---|---|---|
| Identity | Required | System.String | Specifies the Web Part package in the farm’s configuration database. | ||
| 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 | ||
| Language | Optional | System.Int32 | Specifies the language ID of the Web Part package to delete. If no language is specified, the Web Part package is uninstalled for all languages. The type must be a valid language identifier, in the form 1033. | ||
| WebApplication | Optional | Microsoft.SharePoint.PowerShell.SPWebApplicationPipeBind | Specifies the Web application from which to uninstall the Web Part package. If no Web application is specified, the Web Part package is uninstalled from all Web applications. The type must be a valid name, in the form WebApplication-1212, or a URL, in the form http://server_name/WebApplication-1212. | ||
| 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 |
None
| Error | Description |
|---|---|
| Exceptions | Description |
|---|---|
------------------EXAMPLE1------------------
Uninstall-SPWebPartPack "mypart.wpp" -WebApplication http://portal
This example uninstalls mypart.wpp to from the Web application http://portal.
------------------EXAMPLE2------------------
Get-SPWebPartPack -WebApplication http://portal | Uninstall-SPWebPartPack
This example uninstalls all Web part packages from the Web application http://portal.

Note