How to moving your developed workflow solution one server to another server?

255 views Asked by At

How to moving workflow one server to another server ? i mean how do you deploy workflow solution file one site to another site.

1

There are 1 answers

1
Yevgeniy.Chernobrivets On BEST ANSWER

You can use powershell to deploy wsp solutions. First you need to call Add-SPSolution cmdlet to add wsp solution to solution store and then deploy it using Install-SPSolution cmdlet. Please refer to this post.

Example:

Add-SPSolution “D:\Deploy\MySharePointSolution.wsp“
Install-SPSolution –Identity MySharePointSolution.wsp –WebApplication http://myspwebapp –GACDeployment