Pages

Wednesday, 28 January 2015

Adding and Deploying solution using powershell in SharePoint

Add Solution:

add-SPSolution "wsp file path"

Deploy Solution:

Install-SPSolution –Identity "example.wsp" –WebApplication "http://sp2013" -GACDeployment

Update Solution:

Update-SPSolution –Identity "example.wsp" –LiteralPath "Wsp path" –GACDeployment

Retract Solution:

Uninstall-SPSolution –Identity "Example.wsp" –WebApplication "http://sp2013"

Remove Solution:

Remove-SPSolution –Identity "Example.wsp"



No comments:

Post a Comment