Uninstall-SPWebPartPack
Published: July 16, 2012
Applies to: SharePoint Foundation 2013 | SharePoint Server 2013 Enterprise
Uninstalls the specified Web Part package.
Uninstall-SPWebPartPack [-Identity] <String> [-AssignmentCollection <SPAssignmentCollection>] [-CompatibilityLevel <String>] [-Confirm [<SwitchParameter>]] [-Language <UInt32>] [-WebApplication <SPWebApplicationPipeBind>] [-WhatIf [<SwitchParameter>]]
Parameters
| 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 |
Detailed Description
The Uninstall-SPWebPartPack cmdlet uninstalls the Web Part package specified by the Identity parameter.
Input Types
Return Types
None
Errors
| 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.
Change History
| Date | Description |
|---|---|
| July 16, 2012 | Initial publication |

Note: