Timothy Kim
Timothy Kim

Reputation: 11

How to add columns on the online sprint board

I'm trying to understand how to add columns on the web version of TFS for my latest sprint but can't find the options to do so.

Using the default model (To do, In progress, done) does not capture the complexity and need for my team so I need an extra column but do not know how to add it.

If someone could give me pointers on the web version of TFS that would be great.

Upvotes: 1

Views: 100

Answers (1)

jessehouwing
jessehouwing

Reputation: 114491

The sprint board can't be customized through the UI a more complex sequence of steps is required, this involves exporting a couple of XML files, editing them end importing them back in:

  • Export the task WIT from TFS using witadmin exportwitd
  • Add the required State(s)
  • Add the required State transition(s)
  • Export the processconfig using witadmin exportprocessconfig
  • Update the task board configuration to add the new state(s)
  • Import the task WIT using witadmin importwitd
  • Import the processconfig using witadmin importprocessconfig

See:

This is best performed on a (temporary) test Team project collection to finetine the process, you can then import the tested configuration into the existing project.

Upvotes: 1

Related Questions