Click here to Skip to main content
15,886,795 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
How to change the default days off for all sprint in Team Foundation Server 2012(RTM)?
Posted

As mentioned here: Similar question at MSDN forum[^]
It says:
In the common process config settings you can change the weekend days.

If you are on TFSPreview, you are unable yet to modify these settings. But if you are working on premise, you can change that with some steps provided at http://msdn.microsoft.com/en-us/library/hh543813(v=vs.110).aspx#import.[^].

There is also a video about the new configuration settings in TFS11: http://channel9.msdn.com/Blogs/VisualStudio/Upgrading-to-Team-Foundation-Server-11-Process-Templates[^]


Try out.
 
Share this answer
 
XML
Please go to the path <drive>:\Program Files\Microsoft Team Foundation Server 11.0\Tools\Deploy\ProcessTemplateManagerFiles\1033\Scrum\Template\WorkItem Tracking\Process. Open the file CommonConfiguration.xml, and find the Weekends node, customize your weekends. By default, the settings are:

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


then run the following template coammand on "Developer Command Prompt for VS2012":

witadmin importcommonprocessconfig /collection:CollectionURL /p:ProjectName /f:"<drive>:\Program Files\Microsoft Team Foundation Server 11.0\Tools\Deploy\ProcessTemplateManagerFiles\1033\Scrum\Template\WorkItem Tracking\Process\CommonConfiguration.xml"
 
Share this answer
 
v3
Comments
sorosh04 25-Mar-14 7:51am    
Insted of importcommonprocessconfig I used importprocessconfig and worked well.
THanks

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900