/ Published in: Windows PowerShell
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
#Load SharePoint Powershell SnapIn Add-PSSnapin Microsoft.SharePoint.PowerShell -ErrorAction"SilentlyContinue" #Add SharePoint Solution to Solution Store Add-SPSolution -LiteralPath "C:\Solutions\Wingtip DevProject1.wsp" #Install solution only to the local server Install-SPSolution -Identity "WingtipDevProject1.wsp" -Local -GACDeployment