Configure TFS 2010 Email Server, Enable Email Alerts

25. August 2010

 

If you get the error, “Sending email is not enabled”, its because you haven't configured this yet.

You can configure email settings using following command. 

TFSConfig ConfigureMail 
/FromEmailAddress:NoReplyTeamSystem@domain.com
/SmtpHost:DomainMailServer

 

Or just do it via the TFS Administrator Tool which you can also Enable Email Alerts.

 

image

Visual Studio, Team Foundation Server

Team Foundation 2010 – Modify Work Item Types

3. June 2010

Create post here on Modifying Work Item Types in TFS 2010 by Ewald Hofman

The parts I was interested in, exporting and importing…

 

When you want to modify the Task work item type in the project collection “DefaultCollection” on the TFS server “MyTfsServer” and the project “Agile project” you can enter the following command:

witadmin exportwitd /collection:”http://MyTfsServer:8080/tfs/DefaultCollection” /p:”Agile project” /n:Task /f:”c:\temp\Task.xml”

You can now make modifications to the work item type… When you are ready, it is time to upload or import the xml file again. To do that you can use the ImportWitd command…:

witadmin importwitd /collection:”http://MyTfsServer:8080/tfs/DefaultCollection” /p:”Agile project” /f:”c:\temp\Task.xml”

Visual Studio, Team Foundation Server ,