문제

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

도움이 되었습니까?

해결책

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
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top