How do you deploy your SharePoint solutions? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T15:58:34Z http://stackoverflow.com/feeds/question/9543 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/9543/how-do-you-deploy-your-sharepoint-solutions 8 How do you deploy your SharePoint solutions? Lars Mæhlum 2008-08-13T07:33:45Z 2008-09-16T09:42:32Z <p>I am now in the process of planning the deployment of a SharePoint solution into a production environment.<br /> I have read about some tools that promise an easy way to automate this process, but nothing that seems to fit my scenario.</p> <p>In the testing phase I have used SharePoint Designer to copy site content between the different development and testing servers, but this process is manual and it seems a bit unnecessary.</p> <p>The site is made up of SharePoint web part pages with custom web parts, and a lot of Reporting Services report definitions.</p> <p>So, is there any good advice out there in this vast land of geeks on how to most efficiently create and deploy a SharePoint site for a multiple deployment scenario?</p> <p><strong>Edit</strong><br /> Just to clarify. I need to deploy several "SharePoint Sites" into an existing site collection. Since SharePoint likes to have its sites in the SharePoint content database, just putting the files into IIS is not an option at this time.</p> http://stackoverflow.com/questions/9543/how-do-you-deploy-your-sharepoint-solutions/9548#9548 2 Answer by littlegeek for How do you deploy your SharePoint solutions? littlegeek 2008-08-13T07:39:37Z 2008-08-13T07:39:37Z <p>We have a BizTalk 2006 with Web Application and Several WebServices that need to go from Dev to UAT to Live.</p> <p>We use MSBuild right from within VS to build, run tests, dependent on test result, complie, zip and ship to servers.</p> <p>Small MSBuild script on server to unzip, move the files, install clean web app, unlist biztalk bits, install new biztalk bits, re enlist and then start the stuff.</p> <p>MSBuild is hugh and more people need to use it as it there now right in the platform =></p> <p>Use <a href="http://msdn.microsoft.com/en-us/library/0k6kkbsd.aspx" rel="nofollow" title="Unison Home Page"> MSBuild</a></p> http://stackoverflow.com/questions/9543/how-do-you-deploy-your-sharepoint-solutions/9563#9563 2 Answer by littlegeek for How do you deploy your SharePoint solutions? littlegeek 2008-08-13T07:56:37Z 2008-08-13T07:56:37Z <p>Lars</p> <p>Check this post out =></p> <p><a href="http://blogs.msdn.com/ekraus/archive/2008/01/15/sharepoint-automated-deployment-using-msbuild.aspx" rel="nofollow" title="Unison Home Page">MOSS with MSBuild</a></p> http://stackoverflow.com/questions/9543/how-do-you-deploy-your-sharepoint-solutions/9643#9643 2 Answer by Daniel McPherson for How do you deploy your SharePoint solutions? Daniel McPherson 2008-08-13T10:35:58Z 2008-08-13T10:35:58Z <p>I would also suggest checking out the SharePoint Content Deployment Wizard by Chris O'Brien. <a href="http://www.codeplex.com/SPDeploymentWizard" rel="nofollow" title="excanvas"><a href="http://www.codeplex.com/SPDeploymentWizard" rel="nofollow">http://www.codeplex.com/SPDeploymentWizard</a></a> </p> <p>Should help smooth the process you describe, and it's a nice tool for your kitbag regardless</p> http://stackoverflow.com/questions/9543/how-do-you-deploy-your-sharepoint-solutions/69491#69491 0 Answer by autolykos for How do you deploy your SharePoint solutions? autolykos 2008-09-16T04:55:22Z 2008-09-16T04:55:22Z <p>WSS has some built-in support for deploying wss components. See <a href="http://msdn.microsoft.com/en-us/library/aa543214.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa543214.aspx</a> </p> http://stackoverflow.com/questions/9543/how-do-you-deploy-your-sharepoint-solutions/70786#70786 0 Answer by olavk for How do you deploy your SharePoint solutions? olavk 2008-09-16T09:42:32Z 2008-09-16T09:42:32Z <p>Note that "solution" has a specific meaning in Sharepoint: a collection of features (like web parts, list definitions and so on) packaged for deployment as a .wsp file.</p> <p>You typically build sharepoint solutions in Visual Studio and package and deploy them using some tool like Sharepoint SmartTemplates <a href="http://www.codeplex.com/smarttemplates" rel="nofollow">http://www.codeplex.com/smarttemplates</a></p> <p>However in your case you already have content in a live sharepoint site which you want to move to another site. It will probably be too cumbersome to use a solution for this, especially if you want to do it more than once (though it is possible to generate a solution from a live site using SharePoint Solution Generator). </p> <p>The easiest way to deploy all content from one live site to another is to create a backup of the site using stsadm and then restore it to the new site again using stsadm restore. This completely overwrites the new site.</p> <p>You can move select files/lists using import/export (rather than backup/restore). A tool like SharePoint Content Deployment Wizard makes it easier to select the content to move.</p>