Mohsen Alikhani
Mohsen Alikhani

Reputation: 1666

Changing The Default Days Off Sprint for Scrum Template Using TFS 2012 RTM

I install Microsoft Team Foundation Server 2012 RTM on d:\Program Files\Microsoft Team Foundation Server 11.0\ then create the Redemption project in my TFS.

How to change the default days off sprint for scrum template to Thursday and Friday?

Upvotes: 4

Views: 1244

Answers (2)

wterbeek
wterbeek

Reputation: 451

the solution can be found here http://visualstudio.uservoice.com/forums/121579-visual-studio/suggestions/2792800-burndown-chart-should-exclude-non-work-days

in the web environment of your tfs server, go to the gear in the top right corner. depending on your authentication you can see the settings tab, if you click it, you will see checkboxes in front of the days listed. default only weekdays are enabled.

Upvotes: 0

Betty
Betty

Reputation: 9189

http://msdn.microsoft.com/en-us/library/hh500408.aspx

Export the common configuration

witadmin exportcommonprocessconfig /collection:CollectionURL /p:ProjectName /f:"DirectoryPath\CommonConfiguration.xml"

Edit the common configuration

<Weekends>
  <DayOfWeek>Saturday</DayOfWeek>
  <DayOfWeek>Sunday</DayOfWeek>
</Weekends>

Import the common configuration

witadmin importcommonprocessconfig /collection:CollectionURL /p:ProjectName /f:"DirectoryPath\CommonConfiguration.xml"

If you want to make it the default for further team projects you create, you need to export the entire process template, updated it and update it.

Upvotes: 3

Related Questions