<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Search results matching tag 'tsbt-tfs'</title><link>http://blogs.msdn.com/search/SearchResults.aspx?q=&amp;tag=tsbt-tfs&amp;orTags=0&amp;o=DateDescending</link><description>Search results matching tag 'tsbt-tfs'</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>How to determine the latest changeset in your workspace</title><link>http://blogs.msdn.com/buckh/archive/2009/01/26/how-to-determine-the-latest-changeset-in-your-workspace.aspx</link><pubDate>Mon, 26 Jan 2009 08:00:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9376486</guid><dc:creator>buckh</dc:creator><description>&lt;p&gt;When you run get for your entire workspace without any argument, you are requesting that the server give you the latest set of files.&amp;#160; Later you might wonder what changeset was used in that get.&amp;#160; To figure that out, you can use the following &lt;a href="http://msdn.microsoft.com/en-us/library/yxtbh4yh.aspx"&gt;history command&lt;/a&gt; from the root (top) of your workspace.&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;tf history . /r /noprompt /stopafter:1 /version:W&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;Here's what that command means.&amp;#160; The &amp;quot;. /r&amp;quot; part says to look at the current directory recursively, which is why you must run it from the root (top directory) of your workspace.&amp;#160; Here I've specified &amp;quot;/noprompt&amp;quot; so that I don't get dialog, but that's optional.&amp;#160; The &amp;quot;/stopafter:1&amp;quot; option tells tf to print only one changeset.&lt;/p&gt;  &lt;p&gt;The version option is the part that tells the history command to consider history only up to what you have in your workspace.&amp;#160; The &amp;quot;W&amp;quot; means workspace, and without the workspace name and owner being specified it means the current workspace.&amp;#160; The version option could also be written as &amp;quot;/version:1~W&amp;quot; to explicitly state that you are interested in history only up to what is in your workspace.&amp;#160; The &amp;quot;1~&amp;quot; is implicit when it is not specified.&amp;#160; Changeset 1 is when the root of the repository ($/) was created.&lt;/p&gt;  &lt;p&gt;Since the history command sorts the changesets from highest to lowest, the result is that the command displays the highest changeset version of all files currently in your workspace.&lt;/p&gt;  &lt;p&gt;   &lt;div class="wlWriterEditableSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:ec5210e6-59cb-42be-b3bb-40511197ff1a" style="padding-right: 0px; display: inline; padding-left: 0px; float: none; padding-bottom: 0px; margin: 0px; padding-top: 0px"&gt;Technorati Tags: &lt;a href="http://technorati.com/tags/team+foundation+server" rel="tag"&gt;team foundation server&lt;/a&gt;,&lt;a href="http://technorati.com/tags/source+control" rel="tag"&gt;source control&lt;/a&gt;&lt;/div&gt;&lt;/p&gt;</description></item><item><title>TFS 2008 SP1: New setting to delete a build without deleting the build label</title><link>http://blogs.msdn.com/buckh/archive/2008/10/20/tfs-2008-sp1-new-setting-to-delete-a-build-without-deleting-the-build-label.aspx</link><pubDate>Mon, 20 Oct 2008 07:00:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9006629</guid><dc:creator>buckh</dc:creator><description>&lt;P&gt;We've heard from a few customers that they would prefer not to have the build labels deleted when builds are deleted.&amp;nbsp; In Team Foundation Server 2008 SP1 we added a feature to control whether build labels are deleted when the build is deleted.&amp;nbsp; This feature is really a stop-gap measure, and it changes the behavior for build deletion on the entire server (i.e., you cannot change it for particular build definitions).&amp;nbsp; In TFS 2010, we've added GUI options to allow you to control this for each build definition, and the setting is stored in the database along with the build definition.&lt;/P&gt;
&lt;P&gt;To use the feature in 2008 SP1, add the following to the appSettings section in the web.config on the server (application tier).&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&amp;lt;appSettings&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;lt;add key="PreserveLabelsOnBuildDeletion" value="true" /&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;lt;/appSettings&amp;gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;It's not clear at this point whether the TFS 2010 upgrade process will be able to automatically migrate this setting to the build definitions.&amp;nbsp; In the worst case, you may need to enable this setting on each build definition after upgrading to TFS 2010.&lt;/P&gt;
&lt;DIV class=wlWriterSmartContent id=scid:0767317B-992E-4b12-91E0-4F059A8CECA8:32005198-8a13-4f2e-82e3-c46130f401fa style="PADDING-RIGHT: 0px; DISPLAY: inline; PADDING-LEFT: 0px; PADDING-BOTTOM: 0px; MARGIN: 0px; PADDING-TOP: 0px"&gt;Technorati Tags: &lt;A href="http://technorati.com/tags/team%20foundation%20server%202008%20sp1" rel=tag mce_href="http://technorati.com/tags/team%20foundation%20server%202008%20sp1"&gt;team foundation server 2008 sp1&lt;/A&gt;,&lt;A href="http://technorati.com/tags/team%20build" rel=tag mce_href="http://technorati.com/tags/team%20build"&gt;team build&lt;/A&gt;&lt;/DIV&gt;</description></item><item><title>How to set up TFS 2008 SP1 to use TSWA links in checkin notification emails</title><link>http://blogs.msdn.com/buckh/archive/2008/10/14/how-to-set-up-tfs-2008-sp1-to-use-tswa-links-in-checkin-notification-emails.aspx</link><pubDate>Tue, 14 Oct 2008 07:00:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9000277</guid><dc:creator>buckh</dc:creator><description>&lt;P&gt;One of the new features available in TFS 2008 SP1 is that a TSWA URL can be configured in the server so that checkin notification emails will have links to the Team System Web Access page for the changeset, which allows you to see the diffs for each of the changes.&lt;/P&gt;
&lt;P&gt;You can find the documentation for this feature at &lt;A href="http://msdn.microsoft.com/en-us/library/cc668127.aspx" mce_href="http://msdn.microsoft.com/en-us/library/cc668127.aspx"&gt;How to: Configure Work Item Hyperlinks to use Team System Web Access&lt;/A&gt;.&amp;nbsp; You &lt;STRONG&gt;must&lt;/STRONG&gt; also install the following fix (QFE) in order to use the feature: &lt;A href="http://code.msdn.microsoft.com/KB957196" mce_href="http://code.msdn.microsoft.com/KB957196"&gt;KB957196 - Checkin event e-mail alert notification doesn't work&lt;/A&gt; (&lt;A href="http://code.msdn.microsoft.com/KB957196/Release/ProjectReleases.aspx?ReleaseId=1653" mce_href="http://code.msdn.microsoft.com/KB957196/Release/ProjectReleases.aspx?ReleaseId=1653"&gt;download&lt;/A&gt;).&amp;nbsp; Without the fix, turning on the new feature will result in checkin notification emails not working at all.&lt;/P&gt;
&lt;P&gt;You may be wondering why work item tracking email notifications do not also use the TSWA URL.&amp;nbsp; This unfortunately fell through the cracks.&amp;nbsp; The four simple manual steps that you can take to enable this are documented at &lt;A href="http://support.microsoft.com/kb/956761" mce_href="http://support.microsoft.com/kb/956761"&gt;Links for Team System Web Access 2008 Power Tool are enabled only for check-in notification e-mail&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;If you are curious about how to construct your own links to TSWA pages, you can find documentation &lt;A href="http://blogs.msdn.com/buckh/archive/2007/11/29/team-system-web-access-2008-power-tool-is-now-available.aspx" mce_href="http://blogs.msdn.com/buckh/archive/2007/11/29/team-system-web-access-2008-power-tool-is-now-available.aspx"&gt;here&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;STRONG&gt;[UPDATE 10/21/08]&amp;nbsp; &lt;/STRONG&gt;If you want to remove the TSWA URL from registration, you can run the following command after installing the hotfix (the RTM version of the command does not support removing the TSWA URL).&lt;/P&gt;
&lt;P&gt;tfsadminutil configureconnections /tswauri:&lt;/P&gt;
&lt;DIV class=wlWriterEditableSmartContent id=scid:0767317B-992E-4b12-91E0-4F059A8CECA8:0b7786aa-8d6b-4465-87c4-671ffba60fa5 style="PADDING-RIGHT: 0px; DISPLAY: inline; PADDING-LEFT: 0px; FLOAT: none; PADDING-BOTTOM: 0px; MARGIN: 0px; PADDING-TOP: 0px"&gt;Technorati tags: &lt;A href="http://technorati.com/tags/team+foundation+server+2008+SP1" rel=tag mce_href="http://technorati.com/tags/team+foundation+server+2008+SP1"&gt;team foundation server 2008 SP1&lt;/A&gt;, &lt;A href="http://technorati.com/tags/tswa" rel=tag mce_href="http://technorati.com/tags/tswa"&gt;tswa&lt;/A&gt;, &lt;A href="http://technorati.com/tags/source+control" rel=tag mce_href="http://technorati.com/tags/source+control"&gt;source control&lt;/A&gt;, &lt;A href="http://technorati.com/tags/work+item+tracking" rel=tag mce_href="http://technorati.com/tags/work+item+tracking"&gt;work item tracking&lt;/A&gt;&lt;/DIV&gt;</description></item><item><title>92 Tutorial Video’s on Visual Studio Team System 2008 (Getting Started)</title><link>http://blogs.msdn.com/charles_sterling/archive/2008/09/30/92-tutorial-video-s-on-visual-studio-team-system-2008-getting-started.aspx</link><pubDate>Tue, 30 Sep 2008 07:00:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8970843</guid><dc:creator>Charles_Sterling</dc:creator><description>&lt;p&gt;I know with all the noise about the next version of Visual Studio Team System code named Rosario it seems weird to have a post on how to get started on VSTS 2008 – but i have had three requests for this type of information in the last two days. &lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;The first place i would recommend starting is the Hands on labs &lt;a href="http://mcwtech.com/CS/blogs/brianr/default.aspx"&gt;Brian Randell (MCW Technologies)&lt;/a&gt; built into the Public Ready VPC found at: &lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=c7a809d8-8c9f-439f-8147-948bc6957812&amp;amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyID=c7a809d8-8c9f-439f-8147-948bc6957812&amp;amp;displaylang=en&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;The next place i would recommend is one of the 47 video Tutorials &lt;a href="http://www.notionsolutions.com"&gt;Notion&lt;/a&gt; has created at: &lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;a href="http://teamsystemrocks.com/tutorials/default.aspx"&gt;http://teamsystemrocks.com/tutorials/default.aspx&lt;/a&gt; (also pasted below)&lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;Followed by the VSTS How Do I videos by &lt;a href="http://www.teamsystemwidgets.com/"&gt;Richard Hundhausen (Accentient)&lt;/a&gt; &lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;a title="http://msdn.microsoft.com/en-us/vsts2008/test/bb507749.aspx" href="http://msdn.microsoft.com/en-us/vsts2008/test/bb507749.aspx"&gt;http://msdn.microsoft.com/en-us/vsts2008/test/bb507749.aspx&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;Finally don’t forget the VSTS Website and MSDN Library&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;a href="http://msdn.microsoft.com/en-us/vsts2008/default.aspx"&gt;http://msdn.microsoft.com/en-us/vsts2008/default.aspx&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/fda2bad5.aspx"&gt;http://msdn.microsoft.com/en-us/library/fda2bad5.aspx&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://teamsystemrocks.com/"&gt;&lt;img src="http://teamsystemrocks.com/Themes/default/images/common/NewTSRocksLogo1.JPG" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Team Foundation Server&lt;/p&gt;  &lt;ol&gt;   &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/team_foundation_server_new/entry1786.aspx"&gt;Automating Nightly Builds with Team Build&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/team_foundation_server_new/entry1797.aspx"&gt;Project Metrics Data Warehouse&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/team_foundation_server_new/entry1798.aspx"&gt;Understanding VSTS Reports&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/team_foundation_server_new/entry1799.aspx"&gt;Using Team Foundation Servers Command Line Tools&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/team_foundation_server_new/entry1787.aspx"&gt;Configuring Team Foundation Notifications&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/team_foundation_server_new/entry1788.aspx"&gt;Creating Custom Reports in VSTS&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/team_foundation_server_new/entry1789.aspx"&gt;Customizing Process Templates&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/team_foundation_server_new/entry1790.aspx"&gt;Customizing the Build Process with Team Build&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/team_foundation_server_new/entry1791.aspx"&gt;Customizing Work Items&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/team_foundation_server_new/entry1793.aspx"&gt;Microsoft Excel Integration&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/team_foundation_server_new/entry1794.aspx"&gt;Microsoft Project Integration&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/team_foundation_server_new/entry1795.aspx"&gt;MSF Agile Process Template&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/team_foundation_server_new/entry1796.aspx"&gt;Navigating the VSTS Project Portal&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/team_foundation_server_new/entry1800.aspx"&gt;Using the Team Explorer&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/team_foundation_server_new/entry1792.aspx"&gt;Enforcing and Customizing Check-in Policies&lt;/a&gt;&lt;/li&gt; &lt;/ol&gt;  &lt;p&gt;Team Foundation Version Control&lt;/p&gt;  &lt;ol&gt;   &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/team_foundation_version_control_new/entry1780.aspx"&gt;Intro to Version Control – Branching&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/team_foundation_version_control_new/entry1781.aspx"&gt;Intro to Version Control – Changesets&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/team_foundation_version_control_new/entry1782.aspx"&gt;Intro to Version Control - Checkin Checkout&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/team_foundation_version_control_new/entry1783.aspx"&gt;Intro to Version Control – Diffing&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/team_foundation_version_control_new/entry1784.aspx"&gt;Intro to Version Control – Shelving&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/team_foundation_version_control_new/entry1785.aspx"&gt;Intro to Version Control - Workspaces&lt;/a&gt;&lt;/li&gt; &lt;/ol&gt;  &lt;h5&gt;VSTE/Arc&lt;/h5&gt;  &lt;ol&gt;   &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/vste-arc_new/entry1779.aspx"&gt;Using the System Designer to Create Composable Systems&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/vste-arc_new/entry1774.aspx"&gt;Binding a Distributed Application to a Logical Datacenter using the Deployment Designer&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/vste-arc_new/entry1775.aspx"&gt;Designing a Distributed Application using the Application Designer&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/vste-arc_new/entry1776.aspx"&gt;Designing a Logical Datacenter&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/vste-arc_new/entry1777.aspx"&gt;Extending the Distributed System Designers using the SDM SDK&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/vste-arc_new/entry1778.aspx"&gt;Importing IIS Settings into the Distributed System Designers&lt;/a&gt;&lt;/li&gt; &lt;/ol&gt;  &lt;p&gt;VSTE/Dev&lt;/p&gt;  &lt;ol&gt;   &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/vste-dev_new/entry1770.aspx"&gt;Profiling ASPNET Applications&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/vste-dev_new/entry1771.aspx"&gt;Profiling Windows Applications&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/vste-dev_new/entry1772.aspx"&gt;Static Analysis of Managed Code&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/vste-dev_new/entry1773.aspx"&gt;Static Analysis of Unmanaged C/C++ Code&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/vste-dev_new/entry1769.aspx"&gt;Generating and Running a Unit Test&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/vste-dev_new/entry1768.aspx"&gt;Code Coverage&lt;/a&gt;&lt;/li&gt; &lt;/ol&gt;  &lt;p&gt;VSTE/Test&lt;/p&gt;  &lt;ol&gt;   &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/vste-test_new/entry1763.aspx"&gt;Command Line Test Execution&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/vste-test_new/entry1764.aspx"&gt;Creating and Executing a Manual Test&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/vste-test_new/entry1765.aspx"&gt;Creating and Running a Load Test&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/vste-test_new/entry1766.aspx"&gt;Creating and Running a Web Test&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/vste-test_new/entry1767.aspx"&gt;Managing Test Cases in Visual Studio Team System&lt;/a&gt;&lt;/li&gt; &lt;/ol&gt;  &lt;p&gt;Class Designer&lt;/p&gt;  &lt;ol&gt;   &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/class_designer_new/entry1762.aspx"&gt;Visualizing Code using the Visual Studio 2005 Class Designer&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/class_designer_new/entry1758.aspx"&gt;Class Design with the Visual Studio 2005 Class Designer&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/class_designer_new/entry1761.aspx"&gt;Using the Visual Studio 2005 Class Designer for Creating Documentation&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://teamsystemrocks.com/files/25/class_designer_new/entry1759.aspx"&gt;Refactoring Classes using the Visual Studio 2005 Class Designer&lt;/a&gt;&lt;/li&gt; &lt;/ol&gt;  &lt;p&gt;&lt;a href="http://www.notionsolutions.com/Pages/default.aspx"&gt;&lt;img title="image" style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="95" alt="image" src="http://blogs.msdn.com/blogfiles/charles_sterling/WindowsLiveWriter/92TutorialVideosonVisualStudioTeamSystem_E0F9/image_3.png" width="213" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Reminder MVP TV Sept 25th: Using Scrum with Visual Studio Team System</title><link>http://blogs.msdn.com/charles_sterling/archive/2008/09/24/reminder-mvp-tv-sept-25th-using-scrum-with-visual-studio-team-system.aspx</link><pubDate>Wed, 24 Sep 2008 07:00:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8963703</guid><dc:creator>Charles_Sterling</dc:creator><description>&lt;p&gt;&lt;/p&gt;  &lt;p&gt;Mike Azocar (one of the authors of the VSTS Lightweight Scrum template) will be presenting: &lt;b&gt;&lt;i&gt;&lt;a href="https://www.livemeeting.com/cc/mvp/join?id=NR4H9T&amp;amp;role=attend&amp;amp;pw=4402ml-2S65"&gt;Scrum-tastic Development with Visual Studio Team System and Light Weight Scrum&lt;/a&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;Thursday, September 25&lt;sup&gt;th&lt;/sup&gt;, 2008 | 9:00am – 10:00am (PDT, Redmond time) &lt;/p&gt;  &lt;p&gt;&lt;a href="https://www.livemeeting.com/cc/mvp/join?id=NR4H9T&amp;amp;role=attend&amp;amp;pw=4402ml-2S65"&gt;https://www.livemeeting.com/cc/mvp/join?id=NR4H9T&amp;amp;role=attend&amp;amp;pw=4402ml-2S65&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;i&gt;Session Abstract:&amp;#160;&amp;#160; &lt;/i&gt;&lt;/p&gt;  &lt;p&gt;&lt;i&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; All the Interaction of the MSDN Chats but with the richer experience of Live Meeting and hosted by the recognized world technology leaders – the Visual Studio Team System Microsoft MVPs. In this second airing of MVP TV, please join recognized process expert Mike Azocar delivering his much lauded Tech Fest session. Mike will cover the fundamentals of the Scrum development framework.&amp;#160; Why more and more companies and teams are moving to Scrum and see how joining the community-based Light Weight Scrum Process template and Visual Studio Team System can empower your teams and speed up your development.&lt;/i&gt;&lt;/p&gt;  &lt;p&gt;&lt;i&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; About Mike Azocar: A VSTS MVP and Consultant for Notion Solutions. Mike evangelizes Visual Studio Team System and works closely with both the Microsoft Houston office and the VSTS Product Team in Redmond.&amp;#160; Mike has been featured on .Net Rocks and regularly speaks at conferences all over the world. Mike's blogs blog can be found at &lt;a href="http://www.michaelazocar.com/blog"&gt;www.michaelazocar.com/blog&lt;/a&gt;&amp;#160; or&amp;#160; &lt;a href="http://www.geekswithblogs.net/michaelazocar"&gt;www.geekswithblogs.net/michaelazocar&lt;/a&gt;.&lt;/i&gt;&lt;/p&gt;</description></item><item><title>First Virtual VSTS Usergroup September 18, 6:00 PM SLT</title><link>http://blogs.msdn.com/charles_sterling/archive/2008/09/16/first-virtual-vsts-usergroup-september-18-6-00-pm-slt.aspx</link><pubDate>Tue, 16 Sep 2008 07:00:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8954448</guid><dc:creator>Charles_Sterling</dc:creator><description>&lt;p&gt;Despite loving the book &lt;a href="http://en.wikipedia.org/wiki/Snow_Crash"&gt;snowcrash&lt;/a&gt; I am not a huge fan of Second Life – but I am sure having a VSTS User Group in Second life will make all the difference in the world!&lt;/p&gt;  &lt;p&gt; For more information please see: &lt;/p&gt;  &lt;p&gt;&lt;a title="http://www.tsug-ve.com/" href="http://www.tsug-ve.com/"&gt;http://www.tsug-ve.com/&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;TSUG VE for Second Life will meet online every month. We will target the third Thursday of each month at 6PM SLT but times and dates may vary based on holidays and speaker availability. Sign up and we will send you a monthly email reminding you of the time, the topics and speakers, and the SLURL to join the meeting.&lt;/p&gt;  &lt;p&gt;We will start the meeting at the scheduled time but hope that members will find a reason to show up before the prescribed time to socialize, share stories and ideas, and help build community. Once the meeting is called to order, we will have a short ‘sharing session’. Approximately 15 minutes will be spent in a introductory, administrative or (hopefully) sharing session where members can share their successes, ideas and tools.&lt;/p&gt;  &lt;p&gt;The Team System Users Group (TSUG) Virtual Edition (VE) is dedicated to creating a community for Microsoft’s Visual Studio Team System users and enthusiasts wherever they may be. The group will provide a social forum, education opportunities at all levels, and the ability to share our Team System successes and stories with each other.&lt;/p&gt;</description></item><item><title>Team System Web Access 2008 SP1 is now available!</title><link>http://blogs.msdn.com/buckh/archive/2008/08/29/team-system-web-access-2008-sp1-is-now-available.aspx</link><pubDate>Fri, 29 Aug 2008 07:00:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8907933</guid><dc:creator>buckh</dc:creator><description>&lt;p&gt;We've now released the final version of TSWA 2008 SP1, which had previously been released as a community technology preview (CTP).&amp;nbsp; There are some fantastic new features in this release, including the ability for users without CALs to create work items.&lt;/p&gt; &lt;p&gt;Also, this release includes 10 languages: &lt;a href="http://www.microsoft.com/downloads/details.aspx?displaylang=ja&amp;amp;FamilyID=3ecd00ba-972b-4120-a8d5-3d38311893de"&gt;Japanese&lt;/a&gt;, &lt;a href="http://www.microsoft.com/downloads/details.aspx?displaylang=ko&amp;amp;FamilyID=3ecd00ba-972b-4120-a8d5-3d38311893de"&gt;Korean&lt;/a&gt;, &lt;a href="http://www.microsoft.com/downloads/details.aspx?displaylang=es&amp;amp;FamilyID=3ecd00ba-972b-4120-a8d5-3d38311893de"&gt;Spanish&lt;/a&gt;, &lt;a href="http://www.microsoft.com/downloads/details.aspx?displaylang=de&amp;amp;FamilyID=3ecd00ba-972b-4120-a8d5-3d38311893de"&gt;German&lt;/a&gt;, &lt;a href="http://www.microsoft.com/downloads/details.aspx?displaylang=fr&amp;amp;FamilyID=3ecd00ba-972b-4120-a8d5-3d38311893de"&gt;French&lt;/a&gt;, &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=3ECD00BA-972B-4120-A8D5-3D38311893DE&amp;amp;displaylang=en"&gt;English&lt;/a&gt;, Chinese (&lt;a href="http://www.microsoft.com/downloads/details.aspx?displaylang=zh-cn&amp;amp;FamilyID=3ecd00ba-972b-4120-a8d5-3d38311893de"&gt;Simplified&lt;/a&gt; and &lt;a href="http://www.microsoft.com/downloads/details.aspx?displaylang=zh-tw&amp;amp;FamilyID=3ecd00ba-972b-4120-a8d5-3d38311893de"&gt;Traditional&lt;/a&gt;), &lt;a href="http://www.microsoft.com/downloads/details.aspx?displaylang=ru&amp;amp;FamilyID=3ecd00ba-972b-4120-a8d5-3d38311893de"&gt;Russian&lt;/a&gt;, and &lt;a href="http://www.microsoft.com/downloads/details.aspx?displaylang=it&amp;amp;FamilyID=3ecd00ba-972b-4120-a8d5-3d38311893de"&gt;Italian&lt;/a&gt;.&amp;nbsp; All 10 languages are included in the &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=3ECD00BA-972B-4120-A8D5-3D38311893DE&amp;amp;displaylang=en"&gt;download&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;Since the installation package includes all ten languages, you may wonder why you can choose the language on the download web page.&amp;nbsp; It turns out that the installer itself can only support one language for the installation wizard.&amp;nbsp; So, when you choose the language on the download web page, you are choosing to download the installer in that language.&amp;nbsp; The actual product that gets installed is the same for all languages and includes all languages.&lt;/p&gt; &lt;p&gt;&lt;b&gt;Download Team System Web Access 2008 SP1&lt;/b&gt;  &lt;p&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=3ECD00BA-972B-4120-A8D5-3D38311893DE"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyId=3ECD00BA-972B-4120-A8D5-3D38311893DE&lt;/a&gt;  &lt;p&gt;&lt;b&gt;New features in TSWA 2008 SP1 (compared to TSWA 2008)&lt;/b&gt;  &lt;ul&gt; &lt;li&gt;&lt;a href="http://go.microsoft.com/fwlink/?LinkID=125903"&gt;Work item only view&lt;/a&gt; (accessed at &lt;strong&gt;http://&lt;/strong&gt;tswa-server&lt;strong&gt;:8090/wiwa&lt;/strong&gt;) provides access for users within your company that don't have a TFS client access license (CAL), which was made possible by a licensing change in TFS for the 2008 release.&amp;nbsp; It allows you to create new work items and edit work items you have created.&amp;nbsp; Users of the full TSWA features must have CALs. The feature was previously available as a separate download called Work Item Web Access (WIWA) in the CTP.&amp;nbsp; We've consolidated it into the TSWA installation process for the final release.  &lt;li&gt;This release supports running a single instance with multiple languages.  &lt;li&gt;&lt;a href="http://go.microsoft.com/fwlink/?LinkId=126663"&gt;Work item template URLs&lt;/a&gt; allow you to easily create an URL to include in emails, for example, so that users file bugs with particular fields pre-filled according to your needs.&amp;nbsp; I wrote a post about this very useful feature in &lt;a href="http://blogs.msdn.com/buckh/archive/2008/05/14/tswa-tip-how-to-use-the-new-tswa-template-url-feature-aka-initial-value-urls.aspx"&gt;TSWA tip: How to use the new TSWA template URL feature (initial value URL)&lt;/a&gt;.  &lt;li&gt;&lt;a href="http://go.microsoft.com/fwlink/?LinkId=126665"&gt;Share ad-hoc work item queries&lt;/a&gt; by including WIQL in the URL.&amp;nbsp; Normally, queries can only be shared by saving them as Team Queries in Team Explorer.&amp;nbsp; Using this feature, you can embed the query in the URL by using the work item tracking query language directly.  &lt;li&gt;&lt;a href="http://go.microsoft.com/fwlink/?LinkId=126666"&gt;Find and view Shelvesets&lt;/a&gt; from within TSWA.&amp;nbsp; For example, you can use this feature to perform code reviews using only your browser.  &lt;li&gt;Improved &lt;a href="http://go.microsoft.com/fwlink/?LinkId=126667"&gt;work item search syntax&lt;/a&gt; (e.g., Title:"Bug Bash") provides greater flexibility in searching for work items, greatly expanding the &lt;a href="http://blogs.msdn.com/buckh/archive/2007/11/08/tswa-tip-search-bugs-and-reports.aspx"&gt;original search feature&lt;/a&gt;.&amp;nbsp; The search syntax follows Outlook and web search engine syntax.&amp;nbsp; You can find some more examples of using it in my &lt;a href="http://blogs.msdn.com/buckh/archive/2008/04/09/team-system-web-access-2008-sp1-ctp-and-work-item-web-access-2008-ctp-are-now-available.aspx"&gt;post&lt;/a&gt; about the release of the CTP (second half of that post).&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;Additionally, I've posted periodically about the great features in TSWA in posts tagged &lt;a href="http://blogs.msdn.com/buckh/archive/tags/TSWA+Tip/default.aspx"&gt;TSWA Tip&lt;/a&gt;.&lt;/p&gt; &lt;div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:2b1fd65c-e4c2-4b90-b247-8f613e4eedcc" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px"&gt;Technorati tags: &lt;a href="http://technorati.com/tags/team%20foundation%20server%202008" rel="tag"&gt;team foundation server 2008&lt;/a&gt;, &lt;a href="http://technorati.com/tags/tswa" rel="tag"&gt;tswa&lt;/a&gt;, &lt;a href="http://technorati.com/tags/team%20system%20web%20access" rel="tag"&gt;team system web access&lt;/a&gt;&lt;/div&gt;</description></item><item><title>Live Online Presentation: Automation with MSBuild 3.5 and Team Build 2008 August 21st, 2008 | 9:00am</title><link>http://blogs.msdn.com/charles_sterling/archive/2008/08/21/live-online-presentation-automation-with-msbuild-3-5-and-team-build-2008-august-21st-2008-9-00am.aspx</link><pubDate>Thu, 21 Aug 2008 07:00:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8884849</guid><dc:creator>Charles_Sterling</dc:creator><description>&lt;h3&gt; Just a reminder t&lt;a href="http://blogs.msdn.com/charles_sterling/archive/2008/08/14/the-debut-of-mvp-tv-august-21st-2008-9-00am-10-00am-pdt-redmond-time.aspx"&gt;he debut of MVP TV is today August 21st, 2008 | 9:00am – 10:00am (PDT, Redmond time)&lt;/a&gt;&lt;/h3&gt;  &lt;h6&gt;The debut of MVP TV August 21st, 2008 | 9:00am – 10:00am (PDT, Redmond time)&lt;/h6&gt;  &lt;p&gt;&lt;b&gt;&lt;i&gt;The debut of MVP TV&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;i&gt;All the Interaction of the MSDN Chats but with the richer experience of Live meeting and hosted by the recognized world technology leaders –the Visual Studio Team System Microsoft MVP’s. In this opening session of MVP TV, please join one of the most celebrated and recent Team System MVP Steve Andrews covering off Automation with MSBuild 3.5 and Team Build 2008. Did you know that .csproj and .vbproj files are really MSBuild files?&amp;#160; More than build processes though, MSBuild is a full-featured automation language. It includes structured control flow, variables, refactorability, error handling, logging, and powerful extensibility. You can easily integrate MSBuild into your own enterprise processes and start adding value right away.&amp;#160; We'll also look at how Team Foundation Build extends on MSBuild and adds robust integration with Team Foundation Server. This is one show you will not want to miss!&lt;/i&gt;&lt;/p&gt;  &lt;p&gt;&lt;i&gt;About Steve Andrews: Steve Andrews has been working as a developer for more than 9 years. During this time, he has designed and developed applications in such widely varying areas as trust accounting, medical information management, supply chain management, and retail systems. He is currently employed at RDA Corporation in Philadelphia, PA, as a Software Engineer and a team member in their Architectural Guidance evangelism team. Steve is also an MCP, ICSOO, Speaker Liaison for the Philly .NET User Group, and all around .NET fanatic.&lt;/i&gt;&lt;/p&gt;  &lt;p&gt;Thursday, August 21&lt;sup&gt;st&lt;/sup&gt;, 2008 | 9:00am – 10:00am (PDT, Redmond time) &lt;/p&gt;  &lt;p&gt;&lt;i&gt;Hosted by MVP Lead Mei Liang, PJ Forgione&lt;/i&gt;&lt;/p&gt;  &lt;p&gt;Attendee link:&lt;/p&gt;  &lt;p&gt;&lt;a href="https://www.livemeeting.com/cc/mvp/join?id=WP2PSH&amp;amp;role=attend&amp;amp;pw=4334ml%2BVHT8"&gt;https://www.livemeeting.com/cc/mvp/join?id=WP2PSH&amp;amp;role=attend&amp;amp;pw=4334ml%2BVHT8&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;WW event link:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://msevents.microsoft.com/CUI/WebCastEventDetails.aspx?EventID=1032386225&amp;amp;EventCategory=4&amp;amp;culture=en-US&amp;amp;CountryCode=US"&gt;http://msevents.microsoft.com/CUI/WebCastEventDetails.aspx?EventID=1032386225&amp;amp;EventCategory=4&amp;amp;culture=en-US&amp;amp;CountryCode=US&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.microsoft.com/mvp"&gt;&lt;img title="clip_image001" height="54" alt="clip_image001" src="http://blogs.msdn.com/blogfiles/charles_sterling/WindowsLiveWriter/ThedebutofMVPTVAugust21st2008900am1000am_F466/clip_image001_8434be56-837f-4b03-805a-1bb6bfe1eb23.jpg" width="244" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;</description></item><item><title>VSTS &amp;amp; TFS 2008 training courses in Adelaide Sept 9 and 15th</title><link>http://blogs.msdn.com/charles_sterling/archive/2008/08/18/vsts-tfs-2008-training-courses-in-adelaide-sept-9-and-15th.aspx</link><pubDate>Mon, 18 Aug 2008 07:00:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8877849</guid><dc:creator>Charles_Sterling</dc:creator><description>&lt;p&gt;&lt;b&gt;VSTS &amp;amp; TFS 2008 training courses from Microsoft Learning&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;Goods news for Adelaide. The worlds first “Beta” deliveries of the upcoming VSTS &amp;amp; TFS 2008 training courses from Microsoft Learning will be delivered in Adelaide starting September. This is a great opportunity to check out these great new course offerings and increase your knowledge of Team System.&lt;/p&gt;  &lt;p&gt;&lt;b&gt;6214 – Effective Team Development Using Microsoft Visual Studio Team System&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;This three-day instructor-led course provides students with the knowledge and skills to manage source control management, a configurable build process, tools that aid in test driven development, and process workflow all integrated directly into Visual Studio 2008. By the end of the course, developers are equipped to use test-driven techniques and proven software processes to create high-quality software with a minimal change in overall effort.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.ddls.com.au/VendCourseDet/MS+/2/MSVI6214.htm"&gt;http://www.ddls.com.au/VendCourseDet/MS+/2/MSVI6214.htm&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;6215 – Implementing and Administering Microsoft Visual Studio 2008 Team Foundation Server&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;This two-day instructor-led course provides students with the knowledge and skills to implement and administer Microsoft Visual Studio 2008 Team Foundation Server. The course focuses on installation and configuration details, team projects, work items, version control, Team Build, and reporting.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.ddls.com.au/VendCourseID/MSVS6215.htm"&gt;http://www.ddls.com.au/VendCourseID/MSVS6215.htm&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;Schedule&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;6214 (3days)&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;6215 (2days)&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;Adelaide&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;9-11 September&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;15-16 September&lt;/b&gt;&lt;/p&gt;</description></item><item><title>Updated Team Foundation Installation Guide for Visual Studio Team System 2008</title><link>http://blogs.msdn.com/charles_sterling/archive/2008/08/11/updated-team-foundation-installation-guide-for-visual-studio-team-system-2008.aspx</link><pubDate>Mon, 11 Aug 2008 07:00:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8849257</guid><dc:creator>Charles_Sterling</dc:creator><description>&lt;p&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=ff12844f-398c-4fe9-8b0d-9e84181d9923"&gt;Team Foundation Installation Guide for Visual Studio Team System 2008&lt;/a&gt;    &lt;br /&gt;The Team Foundation Installation Guide for Microsoft Visual Studio Team System 2008, which includes Team Foundation Server, Team Foundation Build, Team Foundation Server Proxy, and Team Explorer    &lt;p&gt;&amp;#160;&lt;/p&gt;    &lt;p&gt;&lt;a title="http://www.microsoft.com/downloads/details.aspx?FamilyID=ff12844f-398c-4fe9-8b0d-9e84181d9923&amp;amp;displaylang=en" href="http://www.microsoft.com/downloads/details.aspx?FamilyID=ff12844f-398c-4fe9-8b0d-9e84181d9923&amp;amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyID=ff12844f-398c-4fe9-8b0d-9e84181d9923&amp;amp;displaylang=en&lt;/a&gt;&lt;/p&gt;&lt;/p&gt;</description></item></channel></rss>