Deploying custom workflow on another server
-
Hello, I'm creating sharepoint 2010 workflow using visual studio 2010 .. How can I deploy it on another sharepoint server which is installed on another machine and don't have visual studio installed with it. Thnx
Compile a release. Use Powershell to deploy it:
Add-SPSolution -LiteralPath “C:\Deployment\Solution.wsp”
Activate it with the Centraladministration or Powershell
Install-SPSolution -Identity Solution.wsp -GACDeployment
For Sandbox Solitions: Deploy with:
Add-SPUserSolution -LiteralPath “C:\Deployment\Solution.wsp” -Site http://site
Activate:
Install-SPUserSolution -Identity Solution.wsp -Site http://site
------------------------------ Author of Primary ROleplaying SysTem How do I take my coffee? Black as midnight on a moonless night. War doesn't determine who's right. War determines who's left.