views:

2233

answers:

2

Hello, is there a (simple) way to move a single TeamProject from one server to another? Including source code, work items, documents, project site...

We don't want to move our server from one machine to another. Just a single project from server A to server B.

+4  A: 

You have two options

  1. You can use the TFS to TFS migration tool: Click Here. This doesn't include the WSS project site.

  2. Or you can backup your TFS db and restore on a new TFS instance, then use the TFSDeleteProject.exe tool to remove the projects you don't want.

The latter option is the easiest, but will not merge the backed up projects with any existing projects on the target instance. Existing projects will be lost. WSS sites can also be moved in this manner as well. See How to: Back Up a Team Foundation Server

Mr. Kraus
For what it is worth, this will hopefully get easier in TFS2010 - but this is a great answer for what is needed today. It's just anything but "simple" :-)
Martin Woodward
A: 

In TFS 2010 you can detach the Project Collection database using the TFS Admin Console and then re-attach it to another TFS Server. http://msdn.microsoft.com/en-us/library/dd936138.aspx

LWoodyiii