SharePoint Solution extrahieren / importieren / übertragen
SharePoint (Farm) Solution aus SharePoint extrahieren:
[SharePoint Management Shell] run as Administrator
$farm =
Get-SPFarm
$file = $farm.Solutions.Item("test.wsp").SolutionFile
$file.SaveAs("c:\temp\test.wsp")
[CMD Shell] run as Administrator
add-spsolution c:\temp\test.wsp
Kommentare