How to build and maintain sharepoint solution deployments? We have a development environement, qa and production. How do we rollout the complete solution? And what about updates? If we deploy the solution again with updates, the existing data is gone or we have a broken site or lists?
|
You might want to have a look at this blog which is a great introduction to building your own fully automated deployment (SharePoint 2007 and 2010): http://soerennielsen.wordpress.com/2011/07/29/sharepoint-advanced-large-scale-deployment-scripting-part-1-of-3/ |
|||
|
|
|
As James said, you can use PowerShell script for deploying SharePoint solution/features automatically in QA and Production. You can create one script which could be used for rolling out solutions to both QA and Production Farms. To differentiate between QA and Production, all you have to do is to change URL of Web applications (Web application created at QA and Production Farms respectively) and you're good to go. Note: Deploying updated solutions (depending on you're not explicitly making any change to existing content) may not affect your existing SharePoint content, although it will change the customization/solution logic. PowerShell Deployment Script: Deployment in SharePoint 2010 still has the same eight steps (Deactivate Features, Uninstall Features…..) as described at the beginning of this post. The following script deploy a solution (script source):
|
|||
|
|
|
You will have to design this yourself, possibly by creating powershell scripts to perform the WSP deployments. |
|||
|
|