Domanda

I have a requirement, where i need to identify the wsp to which the webpart belongs.

Scenario: We are migrating from SharePoint 2010 to 2013. Existing Sharepoint has multiple WSPs and each WSP has multiple webparts. Problem is client does not have any documentation around the code. All we got from therir side the list of web parts which they need and which they do not, by showing us on the pages?

Long way is to open all solutions and find out the webparts, but is there a easy way?

È stato utile?

Soluzione

Rename solution.wsp to solution.cab and you can view the content of the wsp. That way you can find web parts, features and everything else deployed to a farm.

To ensure you have the installed solution, download them from the farm directly using this script:

$farm = Get-SPFarm
$file = $farm.Solutions.Item("solution.wsp").SolutionFile
$file.SaveAs("c:\temp\solution.wsp")
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a sharepoint.stackexchange
scroll top