<?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>Paul Andrew</title><link>http://blogs.msdn.com/b/pandrew/</link><description>Senior Product Manager in the Windows Phone division at Microsoft</description><dc:language>en-NZ</dc:language><generator>Telligent Community 5.6.583.19849 (Build: 5.6.583.19849)</generator><item><title>My SharePoint Conference Talk on SharePoint Scalability</title><link>http://blogs.msdn.com/b/pandrew/archive/2011/11/25/my-sharepoint-conference-talk-on-sharepoint-scalability.aspx</link><pubDate>Fri, 25 Nov 2011 16:18:26 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10241574</guid><dc:creator>Paul Andrew</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/rsscomments.aspx?WeblogPostID=10241574</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/commentapi.aspx?WeblogPostID=10241574</wfw:comment><comments>http://blogs.msdn.com/b/pandrew/archive/2011/11/25/my-sharepoint-conference-talk-on-sharepoint-scalability.aspx#comments</comments><description>&lt;p&gt;It's posted here: &lt;a href="http://www.youtube.com/user/sharepointconference#p/search/0/w3bxy5UbCro"&gt;http://www.youtube.com/user/sharepointconference#p/search/0/w3bxy5UbCro&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10241574" width="1" height="1"&gt;</description></item><item><title>Platformer Move Left Glitch Fix</title><link>http://blogs.msdn.com/b/pandrew/archive/2011/10/25/platformer-move-left-glitch-fix.aspx</link><pubDate>Wed, 26 Oct 2011 00:49:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10230036</guid><dc:creator>Paul Andrew</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/rsscomments.aspx?WeblogPostID=10230036</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/commentapi.aspx?WeblogPostID=10230036</wfw:comment><comments>http://blogs.msdn.com/b/pandrew/archive/2011/10/25/platformer-move-left-glitch-fix.aspx#comments</comments><description>&lt;p&gt;I have been trying out code samples on Windows Phone. The &lt;a href="http://create.msdn.com/en-US/education/catalog/sample/platformer"&gt;platformer game sample&lt;/a&gt; moves a player left and right by tilting the phone in the direction to travel. The sample code as published on 10/4/2011 has a problem where the player gets stuck when you tilt to move left until you tilt a lot and he flys over left. This happens because the collision code detects a collision with the ground tile at low speeds. Here is my update for the HandleCollisions() method which avoids the problem.&lt;/p&gt;
&lt;pre class="scroll"&gt;&lt;code class="csharp"&gt; /// &amp;lt;summary&amp;gt;&lt;br /&gt; /// Detects and resolves all collisions between the player and his neighboring&lt;br /&gt; /// tiles. When a collision is detected, the player is pushed away along one&lt;br /&gt; /// axis to prevent overlapping. There is some special logic for the Y axis to&lt;br /&gt; /// handle platforms which behave differently depending on direction of movement.&lt;br /&gt; /// &amp;lt;/summary&amp;gt;&lt;br /&gt; private void HandleCollisions()&lt;br /&gt; {&lt;br /&gt; // Get the player's bounding rectangle and find neighboring tiles.&lt;br /&gt; Rectangle bounds = BoundingRectangle;&lt;br /&gt; int leftTile = (int)Math.Floor((float)bounds.Left / Tile.Width);&lt;br /&gt; int rightTile = (int)Math.Ceiling(((float)bounds.Right / Tile.Width)) - 1;&lt;br /&gt; int topTile = (int)Math.Floor((float)bounds.Top / Tile.Height);&lt;br /&gt; int bottomTile = (int)Math.Ceiling(((float)bounds.Bottom / Tile.Height)) - 1;&lt;br /&gt; &lt;br /&gt; // Reset flag to search for ground collision.&lt;br /&gt; isOnGround = false;&lt;br /&gt; &lt;br /&gt; // For each potentially colliding tile,&lt;br /&gt; for (int y = topTile; y &amp;lt;= bottomTile; ++y)&lt;br /&gt; {&lt;br /&gt; //&lt;br /&gt; // The y loop checks all tile rows that the player intersects with from top to bottom. The x loop checks&lt;br /&gt; // each tile that the player intersects with on that row depending on the players direction of travel.&lt;br /&gt; // The collision tests are required to go in the direction of travel so as to avoid detecting collisions&lt;br /&gt; // with the platform that the player is running on in the horizontal direction. Instead a ground&lt;br /&gt; // collision will be detected and corrected first in the vertical direction and since the player position&lt;br /&gt; // is moved back up and is no longer in line with the platform when the horizontal collision check occurs.&lt;br /&gt; // This direction of travel identification is only required because the collision correction assumes that&lt;br /&gt; // the axis to bounce the player back is the axis with the smallest overlap. This isn't always 100% true.&lt;br /&gt; //&lt;br /&gt; if (velocity.X &amp;lt; 0)&lt;br /&gt; for (int x = rightTile; x &amp;gt;= leftTile; --x)&lt;br /&gt; HandleTileCollisions(ref bounds, x, y);&lt;br /&gt; else&lt;br /&gt; for (int x = leftTile; x &amp;lt;= rightTile; ++x)&lt;br /&gt; HandleTileCollisions(ref bounds, x, y);&lt;br /&gt; }&lt;br /&gt; &lt;br /&gt; // Save the new bounds bottom.&lt;br /&gt; previousBottom = bounds.Bottom;&lt;br /&gt; }&lt;br /&gt; &lt;br /&gt; /// &amp;lt;summary&amp;gt;&lt;br /&gt; /// Calcualtes and corrects collisions of the player position with items on the level map. This method identifies the depth of the &lt;br /&gt; /// collision in the x and y axis and moves the player position back to a location that would not overlap with the object it&lt;br /&gt; /// collided with. It does this in the axis with the smallest collision as a guess as to the direction the player should bounce&lt;br /&gt; /// off the object being collided with. This method does a nice job of having common code for collisions regardless of the&lt;br /&gt; /// direction of travel on the axis as one way is +ve and the other is -ve.&lt;br /&gt; /// &amp;lt;/summary&amp;gt;&lt;br /&gt; /// &amp;lt;param name="bounds"&amp;gt;the bounding rectabgle in pixels for the player sprite as calculated by the GetBoundingRectangle property&amp;lt;/param&amp;gt;&lt;br /&gt; /// &amp;lt;param name="x"&amp;gt;the x location of the tile on the map in the range 0 - 19&amp;lt;/param&amp;gt;&lt;br /&gt; /// &amp;lt;param name="y"&amp;gt;the y location of the tile on the map in the range 0 - 14&amp;lt;/param&amp;gt;&lt;br /&gt; void HandleTileCollisions(ref Rectangle bounds, int x, int y)&lt;br /&gt; {&lt;br /&gt;&lt;/code&gt;&lt;code class="csharp"&gt; // put the code in here from within the for loop in the original HandleCollisions() method&lt;br /&gt; &lt;/code&gt;&lt;code class="csharp"&gt;}&lt;/code&gt;&lt;/pre&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10230036" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/pandrew/archive/tags/Windows+Phone/">Windows Phone</category></item><item><title>System Reset, Hello World Windows Phone Development</title><link>http://blogs.msdn.com/b/pandrew/archive/2011/10/19/system-reset-hello-world-windows-phone-development.aspx</link><pubDate>Wed, 19 Oct 2011 22:02:36 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10227823</guid><dc:creator>Paul Andrew</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/rsscomments.aspx?WeblogPostID=10227823</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/commentapi.aspx?WeblogPostID=10227823</wfw:comment><comments>http://blogs.msdn.com/b/pandrew/archive/2011/10/19/system-reset-hello-world-windows-phone-development.aspx#comments</comments><description>&lt;p&gt;On Monday this week I just started a new job on the planning and strategy team in the Windows Phone division at Microsoft. I’ll be working on the developer platform for the team and the work will likely be a lot of research, analysis and coding. Right now, I’m brand new to phone development so I’m trying to learn as much about writing phone apps ASAP. I am also very much looking forward to all the new stuff I have to learn.&lt;/p&gt;  &lt;p&gt;I have really enjoyed my time working in the SharePoint team. It’s a great team with really good people and a fantastic product. I hope a lot more people will get good value from all of the technical content that I’ve been involved in for SharePoint. Thank you to all the people I’ve worked with in the SharePoint community. The SharePoint MVPs have been really great to work with especially and I’ve made lots of friends from this group.&lt;/p&gt;  &lt;p&gt;This will be somewhat of a reset for me. This is not SharePoint, and it’s not Windows Workflow Foundation that I worked on before that. So, I’m looking to collect pointers to guides for trying out all the things available to developers of Windows Phone apps. I’ll publish what I learn and some Windows Phone developer getting started references as I go. If you have a favourite code sample on Windows Phone, please send me a link!!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10227823" width="1" height="1"&gt;</description></item><item><title>Video published of the Full Farm Failover demo in the SharePoint 2011 Conference Keynote</title><link>http://blogs.msdn.com/b/pandrew/archive/2011/10/06/video-published-of-the-full-farm-failover-demo-in-the-sharepoint-2011-conference-keynote.aspx</link><pubDate>Fri, 07 Oct 2011 05:02:07 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10221436</guid><dc:creator>Paul Andrew</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/rsscomments.aspx?WeblogPostID=10221436</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/commentapi.aspx?WeblogPostID=10221436</wfw:comment><comments>http://blogs.msdn.com/b/pandrew/archive/2011/10/06/video-published-of-the-full-farm-failover-demo-in-the-sharepoint-2011-conference-keynote.aspx#comments</comments><description>&lt;p&gt;You can watch the demo that I worked on here: &lt;a href="http://www.mssharepointconference.com/pages/keynote.aspx"&gt;http://www.mssharepointconference.com/pages/keynote.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Skip through to 42 minutes to see the 10 minute demo.&lt;/p&gt;
&lt;p&gt;Watch as SharePoint 2010 handles the network cable to the SQL Server being disconnected and fails over to a secondary SQL Server machine thanks to SQL "Denali" Always On.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10221436" width="1" height="1"&gt;</description></item><item><title>SharePoint Scalability Report and the SharePoint Conference 2011 Keynote Demo</title><link>http://blogs.msdn.com/b/pandrew/archive/2011/10/03/sharepoint-scalability-report-and-the-sharepoint-conference-2011-keynote-demo.aspx</link><pubDate>Mon, 03 Oct 2011 22:45:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10219424</guid><dc:creator>Paul Andrew</dc:creator><slash:comments>2</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/rsscomments.aspx?WeblogPostID=10219424</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/commentapi.aspx?WeblogPostID=10219424</wfw:comment><comments>http://blogs.msdn.com/b/pandrew/archive/2011/10/03/sharepoint-scalability-report-and-the-sharepoint-conference-2011-keynote-demo.aspx#comments</comments><description>&lt;p&gt;&lt;span style="font-family: 'Calibri','sans-serif'; font-size: 11pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"&gt;We just published the &lt;/span&gt;&lt;span style="font-family: 'Verdana','sans-serif'; mso-bidi-font-size: 10.0pt;"&gt;&lt;a href="http://go.microsoft.com/fwlink/?LinkId=229493"&gt;Scale Test Report for Very Large Scale Document Repositories&lt;/a&gt; on Technet. This is all the details of the scale tests we did to help support the increases that we made in the &lt;a href="http://technet.microsoft.com/en-us/library/cc262787.aspx"&gt;SharePoint Limits and Boundaries document&lt;/a&gt;.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: 'Verdana','sans-serif'; mso-bidi-font-size: 10.0pt;"&gt;The first keynote demo at the &lt;a href="http://www.mssharepointconference.com"&gt;SharePoint Conference 2011&lt;/a&gt; used the same SharePoint farm and we've spent the last 3 weeks setting it up with SQL Server "Denali" CTP 3 for the conference.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;--&lt;/p&gt;
&lt;p&gt;Alternate link to the paper as the LinkId is currently broken:&lt;a href="http://www.microsoft.com/download/en/details.aspx?id=27573"&gt;http://www.microsoft.com/download/en/details.aspx?id=27573&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10219424" width="1" height="1"&gt;</description></item><item><title>New SharePoint 2010 Implementers Courseware, Two Courses: Internet Sites Implementers and Enterprise Content Management Implementers</title><link>http://blogs.msdn.com/b/pandrew/archive/2011/08/01/sharepoint-2010-implementers-courseware.aspx</link><pubDate>Mon, 01 Aug 2011 13:00:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10191331</guid><dc:creator>Paul Andrew</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/rsscomments.aspx?WeblogPostID=10191331</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/commentapi.aspx?WeblogPostID=10191331</wfw:comment><comments>http://blogs.msdn.com/b/pandrew/archive/2011/08/01/sharepoint-2010-implementers-courseware.aspx#comments</comments><description>&lt;p&gt;I am pleased to announce that TechNet have published two new Training Courses for Implementing SharePoint Solutions. Each of these courses contains 15 modules representing 5 days of instructor led training and each module includes video lessons, hands on labs, and a quiz.&lt;/p&gt;
&lt;h5&gt;&lt;span style="font-size: medium;"&gt;&lt;a href="http://technet.microsoft.com/en-US/sharepoint/hh126808" target="_blank"&gt;SharePoint Enterprise Content Management Implementers Course&lt;/a&gt;&lt;/span&gt;&lt;/h5&gt;
&lt;p&gt;This course teaches implementers how to leverage features in SharePoint Server to implement an Enterprise Content Management (ECM) system. ECM systems are designed to manage large amounts of content, including content in the form of documents and content in pages, wiki libraries, blog posts, and other types of non-document content. Document management is the heart of ECM. Document management in SharePoint Server consists of a rich feature set that includes tight integration to Microsoft Office client applications, standard version-control features, and innovative features that allow SharePoint Server to bridge the gap between a folder-based mindset of the typical user and the metadata-based mindset of a records manager. This course develops the key skills that are necessary to deploy SharePoint Server for ECM solutions at organizations of any size. Larger organizations should start with this course and supplement it with expertise in large-scale ECM implementations, whereas medium and smaller organizations may find all they need in this course to implement their systems successfully.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://technet.microsoft.com/en-US/sharepoint/hh126808"&gt;&lt;img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="clip_image002" border="0" alt="clip_image002" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-28-42-metablogapi/8321.clip_5F00_image002_5F00_26713AE2.png" width="244" height="211" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h5&gt;&lt;span style="font-size: medium;"&gt;&lt;a href="http://technet.microsoft.com/en-US/sharepoint/hh126807" target="_blank"&gt;SharePoint for Internet Sites Implementers Course&lt;/a&gt;&lt;/span&gt;&lt;/h5&gt;
&lt;p&gt;This course describes how to implement and brand a SharePoint based public web site using SharePoint web content management (WCM). Once the course is completed, you will be able to implement a SharePoint deployment of a branded web site with structured content management. You will also be able to successfully plan, deploy, monitor, and maintain an Internet site on SharePoint. No development experience is required, but experience with HTML and CSS is recommended.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://technet.microsoft.com/en-US/sharepoint/hh126807"&gt;&lt;img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="clip_image004" border="0" alt="clip_image004" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-28-42-metablogapi/0474.clip_5F00_image004_5F00_05E9FB30.png" width="244" height="215" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10191331" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/pandrew/archive/tags/SharePoint/">SharePoint</category></item><item><title>New Demos of SharePoint 2010 web site capabilities</title><link>http://blogs.msdn.com/b/pandrew/archive/2011/07/13/new-demos-of-sharepoint-2010-web-site-capabilities.aspx</link><pubDate>Wed, 13 Jul 2011 16:36:16 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10186131</guid><dc:creator>Paul Andrew</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/rsscomments.aspx?WeblogPostID=10186131</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/commentapi.aspx?WeblogPostID=10186131</wfw:comment><comments>http://blogs.msdn.com/b/pandrew/archive/2011/07/13/new-demos-of-sharepoint-2010-web-site-capabilities.aspx#comments</comments><description>&lt;p&gt;We have two new demos of SharePoint 2010 for Internet Sites capability demos.&lt;/p&gt;  &lt;p&gt;The first one shows a SharePoint 2010 based web site that includes search, web analytics, social networking integration, and web content management.&lt;/p&gt;  &lt;p&gt;&lt;a title="http://www.demomate.com/content/SharePoint/SharePoint_2010_Customer_Engagement_Demo.html" href="http://www.demomate.com/content/SharePoint/SharePoint_2010_Customer_Engagement_Demo.html"&gt;http://www.demomate.com/content/SharePoint/SharePoint_2010_Customer_Engagement_Demo.html&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;The second one shows the same web site, calling out additional search features, showing a mobile view of the site, and showing integration with WebTrends.&lt;/p&gt;  &lt;p&gt;&lt;a title="http://www.demomate.com/content/SharePoint/SharePoint_2010_Customer_Engagement_2.html" href="http://www.demomate.com/content/SharePoint/SharePoint_2010_Customer_Engagement_2.html"&gt;http://www.demomate.com/content/SharePoint/SharePoint_2010_Customer_Engagement_2.html&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;For more information about SharePoint 2010 for Internet Sites see: &lt;a title="http://sharepoint.microsoft.com/en-us/internetsites/Pages/Home.aspx" href="http://sharepoint.microsoft.com/en-us/internetsites/Pages/Home.aspx"&gt;http://sharepoint.microsoft.com/en-us/internetsites/Pages/Home.aspx&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10186131" width="1" height="1"&gt;</description></item><item><title>Articles about Scaling SharePoint to Large Content Database Capacity</title><link>http://blogs.msdn.com/b/pandrew/archive/2011/07/08/articles-about-scaling-sharepoint-to-large-content-database-capacity.aspx</link><pubDate>Fri, 08 Jul 2011 19:46:38 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10184704</guid><dc:creator>Paul Andrew</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/rsscomments.aspx?WeblogPostID=10184704</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/commentapi.aspx?WeblogPostID=10184704</wfw:comment><comments>http://blogs.msdn.com/b/pandrew/archive/2011/07/08/articles-about-scaling-sharepoint-to-large-content-database-capacity.aspx#comments</comments><description>&lt;p&gt;Today we &lt;a href="http://blogs.msdn.com/b/pandrew/archive/2011/07/08/announcing-new-larger-content-database-size-limits-and-rbs-clarifications.aspx"&gt;announced new scalability limits for SharePoint content databases&lt;/a&gt;. SharePoint 2010 implementations can make use of scale up and scale out. Scale up means increasing hardware resources available so that the software can do more. Scale out means increasing the number of servers that you are loading up and for SharePoint this also means increasing the number of SharePoint Content Databases that you work with.&lt;/p&gt;
&lt;p&gt;With the new content database capacity limits we have guidance for scaling up with SharePoint and using more hardware resources:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://technet.microsoft.com/en-us/library/cc262787.aspx"&gt;SharePoint Server 2010 capacity management: Software boundaries and limits&lt;/a&gt;&amp;nbsp;(updated July 8th, 2011)&lt;/li&gt;
&lt;li&gt;&lt;a href="http://go.microsoft.com/fwlink/?LinkId=223599"&gt;Managing Multi-Terabyte Content Databases with Microsoft&lt;sup&gt;&amp;reg;&lt;/sup&gt; SharePoint&lt;sup&gt;&amp;reg;&lt;/sup&gt; 2010&lt;/a&gt;&amp;nbsp;by Bill Baer&lt;/li&gt;
&lt;li&gt;&lt;a href="http://technet.microsoft.com/en-us/library/cc298801.aspx"&gt;Storage and SQL Server capacity planning and configuration&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://technet.microsoft.com/en-us/library/hh307868.aspx"&gt;Scale-out Collaboration Sites&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://technet.microsoft.com/en-us/library/cc262971.aspx"&gt;TechNet SharePoint Performance and Capacity&amp;nbsp;Management Section&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p style="margin-bottom: 3pt;" class="ProductHead"&gt;It's also important to note that using an RBS provider, whether the Microsoft one or a third party one, does not increase the data size scalability of SharePoint. All the limits numbers apply whether your data is all in SQL Server or if BLOBs are moved out using an RBS povider.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10184704" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/pandrew/archive/tags/SharePoint/">SharePoint</category></item><item><title>Read the detail about SharePoint 2010 and Remote Blob Storage </title><link>http://blogs.msdn.com/b/pandrew/archive/2011/07/08/read-the-detail-about-sharepoint-2010-and-remote-blob-storage.aspx</link><pubDate>Fri, 08 Jul 2011 19:28:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10184700</guid><dc:creator>Paul Andrew</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/rsscomments.aspx?WeblogPostID=10184700</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/commentapi.aspx?WeblogPostID=10184700</wfw:comment><comments>http://blogs.msdn.com/b/pandrew/archive/2011/07/08/read-the-detail-about-sharepoint-2010-and-remote-blob-storage.aspx#comments</comments><description>&lt;p&gt;What is Remote Blog Storage (RBS) and what can it do for me? View the second part of &lt;a href="http://sharepoint.microsoft.com/blog/Pages/BlogPost.aspx?pID=988"&gt;this SharePoint Team Blog article&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Additional articles on RBS with SharePoint 2010:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href="http://technet.microsoft.com/en-us/library/ff628583.aspx"&gt;Plan for RBS&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://technet.microsoft.com/en-us/library/ee748638.aspx"&gt;Manage RBS&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://technet.microsoft.com/en-us/library/ee748649.aspx"&gt;Overview of RBS&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://technet.microsoft.com/en-us/library/ee748631.aspx"&gt;Install and configure RBS&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://technet.microsoft.com/en-us/library/ff629463.aspx"&gt;Install and configure RBS with 3&lt;sup&gt;rd&lt;/sup&gt; party &amp;nbsp;provider&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://technet.microsoft.com/en-us/library/ee748641.aspx"&gt;Set a content database to use RBS&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://technet.microsoft.com/en-us/library/ff628254.aspx"&gt;Migrate content into or out of RBS&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://technet.microsoft.com/en-us/library/ff943565.aspx"&gt;Maintain RBS&lt;/a&gt;&amp;nbsp;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://technet.microsoft.com/en-us/library/ff628259.aspx"&gt;Disable RBS on a content database&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;It's also important to note that using an RBS provider, whether the Microsoft one or a third party one, does not increase the data size scalability of SharePoint. All the limits numbers apply whether your data is all in SQL Server or if BLOBs are moved out using an RBS povider. Although there are many benefits of RBS providers, they do not break through the SharePoint supported content database size limits.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10184700" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/pandrew/archive/tags/SharePoint/">SharePoint</category></item><item><title>Announcing: New Larger Content Database Size Limits and RBS Clarifications</title><link>http://blogs.msdn.com/b/pandrew/archive/2011/07/08/announcing-new-larger-content-database-size-limits-and-rbs-clarifications.aspx</link><pubDate>Fri, 08 Jul 2011 19:06:55 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10184695</guid><dc:creator>Paul Andrew</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/rsscomments.aspx?WeblogPostID=10184695</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/commentapi.aspx?WeblogPostID=10184695</wfw:comment><comments>http://blogs.msdn.com/b/pandrew/archive/2011/07/08/announcing-new-larger-content-database-size-limits-and-rbs-clarifications.aspx#comments</comments><description>&lt;p&gt;Today we are updating the &lt;a href="http://technet.microsoft.com/en-us/library/cc262787.aspx"&gt;SharePoint Boundaries and Limits document on TechNet&lt;/a&gt; with larger content database size limits and we are clarifying the value in Remote Blob Storage (RBS). With these changes to the SharePoint software boundaries the discussion of scale limits moves to other areas such as appropriate hardware, SQL Server configuration, disk IO bandwidth, planning and pre-production testing.&lt;/p&gt;
&lt;p&gt;Full details are on the SharePoint team blog &lt;a href="http://sharepoint.microsoft.com/blog/Pages/BlogPost.aspx?pID=988"&gt;here&lt;/a&gt;. Key changes:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;The 200 GB content database size limit is being increased to 4 TB with new requirements and considerations to help customers successfully scale to larger storage sizes. The old 200 GB content database size limit is still supported with no additional requirements for consistency.&lt;/li&gt;
&lt;li&gt;For document center and records center site templates with more strict requirements outlined in the Boundaries and Limits document there is no explicit content database size limit.&lt;/li&gt;
&lt;li&gt;All known issues with large content database sizes are detailed in the boundaries and limits document. This empowers customers to make their own decisions about how to implement their systems.&lt;/li&gt;
&lt;li&gt;We are clarifying that Remote Blob Storage (RBS) does not offer a way to increase the SharePoint content database size limits. The content database supported size limits apply to the sum of data stored in SQL Server plus data stored outside of SQL Server using an RBS provider. A description and the value of RBS is detailed in the team blog post.&lt;/li&gt;
&lt;li&gt;The Microsoft SQL Server FILESTREAM RBS provider is now supported allowing for iSCSI connections to lower cost NAS storage. The SQL Server RBS provider is one option for RBS use with SharePoint and there are a number of ISV&amp;rsquo;s who also have RBS providers.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;As part of the work required to increase these limits we have completed scale lab testing with a SharePoint farm with two content databases with a total of 30 TB of data across 120 million items. A report on this scale lab will be published in the near future.&lt;/p&gt;
&lt;p&gt;Feel free to post a comment on this blog if you have any questions about this and I'll answer them.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10184695" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/pandrew/archive/tags/SharePoint/">SharePoint</category></item><item><title>My Favourite SharePoint 2010 Scalability Articles</title><link>http://blogs.msdn.com/b/pandrew/archive/2011/02/24/my-favourite-sharepoint-2010-scalability-articles.aspx</link><pubDate>Thu, 24 Feb 2011 20:35:38 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10133753</guid><dc:creator>Paul Andrew</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/rsscomments.aspx?WeblogPostID=10133753</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/commentapi.aspx?WeblogPostID=10133753</wfw:comment><comments>http://blogs.msdn.com/b/pandrew/archive/2011/02/24/my-favourite-sharepoint-2010-scalability-articles.aspx#comments</comments><description>&lt;p&gt;The scalability test results for SharePoint large scale document management is &lt;a href="http://www.bing.com/search?q=LargeScaleDocRepositoryCapacityPlanningDoc"&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The SharePoint 2010 support boundaries and limits document is &lt;a href="http://technet.microsoft.com/en-us/library/cc262787.aspx"&gt;here&lt;/a&gt;.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10133753" width="1" height="1"&gt;</description></item><item><title>New RBS whitepaper just published</title><link>http://blogs.msdn.com/b/pandrew/archive/2011/02/07/new-rbs-whitepaper-just-published.aspx</link><pubDate>Tue, 08 Feb 2011 05:11:57 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10126011</guid><dc:creator>Paul Andrew</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/rsscomments.aspx?WeblogPostID=10126011</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/commentapi.aspx?WeblogPostID=10126011</wfw:comment><comments>http://blogs.msdn.com/b/pandrew/archive/2011/02/07/new-rbs-whitepaper-just-published.aspx#comments</comments><description>&lt;p&gt;RBS is an add-in technology for SharePoint that stores large binary data such as word documents outside of the primary SQL database. It is useful to move some of this data onto less expensive storage media.&lt;/p&gt;
&lt;p&gt;A new paper on Remote Blob Storage (RBS) has just been published which is really helpful in understanding it.&lt;/p&gt;
&lt;p&gt;Get the paper &lt;a href="http://download.microsoft.com/download/9/5/2/9521D8DA-5D3C-4817-BB9D-B5B1BD293365/SQL_Server_2008_R2_Remote_Blob_Storage.docx"&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Referenced from &lt;a href="http://www.microsoft.com/sqlserver/en/us/solutions-technologies/rich-application-development/rich-development-capabilities.aspx"&gt;this SQL Server page&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;And it was authored by &lt;a href="http://www.knowledgelake.com/sharepoint-ecm-blog/Lists/Posts/Post.aspx?ID=63"&gt;these guys&lt;/a&gt;.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10126011" width="1" height="1"&gt;</description></item><item><title>Visual Studio 2008 extensions for Windows SharePoint Services (VSEWSS) v1.3 Released</title><link>http://blogs.msdn.com/b/pandrew/archive/2010/12/20/visual-studio-2008-extensions-for-windows-sharepoint-services-vsewss-v1-3-released.aspx</link><pubDate>Mon, 20 Dec 2010 22:25:03 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10107403</guid><dc:creator>Paul Andrew</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/rsscomments.aspx?WeblogPostID=10107403</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/commentapi.aspx?WeblogPostID=10107403</wfw:comment><comments>http://blogs.msdn.com/b/pandrew/archive/2010/12/20/visual-studio-2008-extensions-for-windows-sharepoint-services-vsewss-v1-3-released.aspx#comments</comments><description>&lt;p&gt;The VSeWSS v1.3 is now released and is available for download &lt;a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=d87523da-b5bc-4296-be8a-8e3785c8f181"&gt;here&lt;/a&gt;. You should uninstall the VSeWSS 1.3 CTP and install this version. There is no difference to the project file format so Visual Studio 2008 projects using the VSeWSS format should not require any upgrading from the CTP.&lt;/p&gt;
&lt;p&gt;The tools are available in 9 languages including English, Japanese, German, French, Spanish, Italian, Korean, Chinese (Simplified), and Chinese (Traditional). They are intended to be used with the Visual Studio 2008 install of the same language.&lt;/p&gt;
&lt;p&gt;Please note: These are the development tools for SharePoint 2007 and require Visual Studio 2008. The development tools for SharePoint 2010 are included with Visual Studio 2010. You can upgrade your VSeWSS projects to Visual Studio 2010 and SharePoint Server 2010 using an upgrade tool available &lt;a href="http://code.msdn.microsoft.com/VSeWSSImport"&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;New features in v1.3 over the v1.2 are:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Runs on x64 bit machines&lt;/li&gt;
&lt;li&gt;Fast deployment commands&lt;/li&gt;
&lt;li&gt;WSP View improvements&lt;/li&gt;
&lt;li&gt;Command line build support&lt;/li&gt;
&lt;li&gt;Solution Generator supports Publishing Sites&lt;/li&gt;
&lt;li&gt;New RootFiles templates&lt;/li&gt;
&lt;li&gt;Web part rename assistance&lt;/li&gt;
&lt;li&gt;CopyLocal support for adding dependent DLLs&lt;/li&gt;
&lt;li&gt;Conflict resolution dialog for deployments&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;These features were all available in the CTP. More details of the new features, and other important installation tips are in the release notes on the download page. Please review the release notes.&lt;/p&gt;
&lt;p&gt;The best place to get assistance in using VSeWSS 1.3 is in the &lt;a href="http://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopment/threads"&gt;SharePoint 2007 Development MSDN Forum&lt;/a&gt;.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10107403" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/pandrew/archive/tags/SharePoint/">SharePoint</category><category domain="http://blogs.msdn.com/b/pandrew/archive/tags/WSS/">WSS</category><category domain="http://blogs.msdn.com/b/pandrew/archive/tags/VSeWSS/">VSeWSS</category><category domain="http://blogs.msdn.com/b/pandrew/archive/tags/Visual+Studio/">Visual Studio</category></item><item><title>New SPDisposeCheck release available</title><link>http://blogs.msdn.com/b/pandrew/archive/2010/12/13/new-spdisposecheck-release-available.aspx</link><pubDate>Mon, 13 Dec 2010 17:26:50 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10104163</guid><dc:creator>Paul Andrew</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/rsscomments.aspx?WeblogPostID=10104163</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/commentapi.aspx?WeblogPostID=10104163</wfw:comment><comments>http://blogs.msdn.com/b/pandrew/archive/2010/12/13/new-spdisposecheck-release-available.aspx#comments</comments><description>&lt;p&gt;I've been working on the &lt;a href="http://code.msdn.microsoft.com/SPDisposeCheck"&gt;SPDisposeCheck tool&lt;/a&gt; with&amp;nbsp;a few other guys and we've just finished a new release. You will find lots more information about the new release at &lt;a href="http://blogs.msdn.com/b/rogerla/"&gt;Roger Lamb's blog&lt;/a&gt;.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10104163" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/pandrew/archive/tags/SharePoint/">SharePoint</category></item><item><title>Live Chats to Learn more about SharePoint with the MVP Experts</title><link>http://blogs.msdn.com/b/pandrew/archive/2010/09/22/live-chats-to-learn-more-about-sharepoint-with-the-mvp-experts.aspx</link><pubDate>Thu, 23 Sep 2010 04:10:44 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10066530</guid><dc:creator>Paul Andrew</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/rsscomments.aspx?WeblogPostID=10066530</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/commentapi.aspx?WeblogPostID=10066530</wfw:comment><comments>http://blogs.msdn.com/b/pandrew/archive/2010/09/22/live-chats-to-learn-more-about-sharepoint-with-the-mvp-experts.aspx#comments</comments><description>&lt;p&gt;The ever popular MVP chats are back. Cross posting from &lt;a href="http://blogs.msdn.com/b/mvpawardprogram/archive/2010/09/20/september-live-chats-to-learn-more-about-sharepoint-with-the-mvp-experts.aspx"&gt;here&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;Do you have questions about SharePoint? Want to learn more about the recently launched SharePoint 2010?&amp;#160; By popular request, SharePoint &lt;a href="http://mvp.support.microsoft.com/"&gt;MVPs&lt;/a&gt; from around the world are participating in a live chat event about SharePoint. These Q&amp;amp;A events are a great opportunity to tap into the vast knowledge of these industry professionals who are regarded as the best in their field. &lt;/p&gt;  &lt;p&gt;Please join us on Wednesday Sept 29th at 9am PDT or noon EST.&amp;#160; Learn more and add these chats to your calendar by visiting the MSDN event page &lt;a href="http://msdn.microsoft.com/en-us/chats/default.aspx"&gt;http://msdn.microsoft.com/en-us/chats/default.aspx&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10066530" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/pandrew/archive/tags/SharePoint/">SharePoint</category></item><item><title>VSeWSS Import Tool Released</title><link>http://blogs.msdn.com/b/pandrew/archive/2010/06/16/vsewss-import-tool-released.aspx</link><pubDate>Wed, 16 Jun 2010 15:49:05 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10025847</guid><dc:creator>Paul Andrew</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/rsscomments.aspx?WeblogPostID=10025847</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/commentapi.aspx?WeblogPostID=10025847</wfw:comment><comments>http://blogs.msdn.com/b/pandrew/archive/2010/06/16/vsewss-import-tool-released.aspx#comments</comments><description>&lt;p&gt;We completed and published the &lt;a target="_blank" href="http://code.msdn.microsoft.com/VSeWSSImport"&gt;SharePoint VSeWSS Import tool&lt;/a&gt;. This tool is an add-in to Visual Studio 2010 and it adds a new SharePoint project template for importing a VSeWSS project. &lt;/p&gt;
&lt;p&gt;VSeWSS or the Visual Studio 2008 extensions for Windows SharePoint Services are the Microsoft tools for creating SharePoint 2007 projects on Visual Studio 2008. In Visual Studio 2010 we have built in tools for creating SharePoint 2010 projects. This import tool takes a VSeWSS project that is targetted at SharePoint 2007 and migrates it to Visual Studio 2010 where it is targetted at SharePoint 2010.&lt;/p&gt;
&lt;p&gt;The import tool is distributed as source code so you will need to compile it before using it. There's a batch file provided for this and you just need Visual Studio 2010 installed and to run the batch file.&lt;/p&gt;
&lt;p&gt;The import tool works at the project level, not the solution level. So if you have a solution with multiple projects you will need to import them one by one and get them all going.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10025847" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/pandrew/archive/tags/VSeWSS/">VSeWSS</category></item><item><title>Love my new Microsoft arc mouse</title><link>http://blogs.msdn.com/b/pandrew/archive/2010/06/09/love-my-new-microsoft-arc-mouse.aspx</link><pubDate>Wed, 09 Jun 2010 16:18:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10022395</guid><dc:creator>Paul Andrew</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/rsscomments.aspx?WeblogPostID=10022395</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/commentapi.aspx?WeblogPostID=10022395</wfw:comment><comments>http://blogs.msdn.com/b/pandrew/archive/2010/06/09/love-my-new-microsoft-arc-mouse.aspx#comments</comments><description>&lt;p&gt;I just got a new Microsoft arc mouse and I really like it. I'm down in New Orleans this week for TechEd USA so using it on random surfaces at the event and in my hotel and it's been working great. I also like how the wireless works when presenting, unlike my previous mouse which would get overloaded with all the attendeed WIFI traffic making it unusable when presenting. The design is very appealing to me with the magnetic hold for the transceiver and the steel hinge to close it which also turns it off.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.microsoft.com/hardware/mouseandkeyboard/productdetails.aspx?pid=112"&gt;http://www.microsoft.com/hardware/mouseandkeyboard/productdetails.aspx?pid=112&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;My new favourite travel mouse. My last favourite was &lt;a target="_blank" href="http://www.microsoft.com/hardware/mouseandkeyboard/ProductDetails.aspx?pid=051"&gt;this one&lt;/a&gt; but I would not use that in my office because it's too small.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10022395" width="1" height="1"&gt;</description></item><item><title>Benign OWSTimer unhandled exception popup – System.Security.Cryptographic.CryptographicException</title><link>http://blogs.msdn.com/b/pandrew/archive/2010/05/25/benign-owstimer-unhandled-exception-popup-system-security-cryptographic-cryptographicexception.aspx</link><pubDate>Tue, 25 May 2010 21:58:52 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10015160</guid><dc:creator>Paul Andrew</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/rsscomments.aspx?WeblogPostID=10015160</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/commentapi.aspx?WeblogPostID=10015160</wfw:comment><comments>http://blogs.msdn.com/b/pandrew/archive/2010/05/25/benign-owstimer-unhandled-exception-popup-system-security-cryptographic-cryptographicexception.aspx#comments</comments><description>&lt;p&gt;Have you seen this popup exception message from the Visual Studio Just-In-Time (JIT) Debugger?&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-28-42-metablogapi/5023.clip_5F00_image0026_5F00_58BFE08B.jpg"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="clip_image002[6]" border="0" alt="clip_image002[6]" src="http://blogs.msdn.com/cfs-file.ashx/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-28-42-metablogapi/5736.clip_5F00_image0026_5F00_thumb_5F00_3C42EEAB.jpg" width="402" height="435" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Here’s the resulting event log error:&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;font face="Courier New"&gt;An unhandled exception occurred and the process was terminated.&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font face="Courier New"&gt;Application ID: DefaultDomain&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font face="Courier New"&gt;Process ID: 6148&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font face="Courier New"&gt;Exception: System.Security.Cryptography.CryptographicException&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font face="Courier New"&gt;Message: Keyset does not exist&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font face="Courier New"&gt;StackTrace:&amp;#160;&amp;#160;&amp;#160; at System.Security.Cryptography.CryptographicException.ThrowCryptogaphicException(Int32 hr)&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font face="Courier New"&gt;&amp;#160;&amp;#160; at System.Security.Cryptography.SafeProvHandle._FreeCSP(IntPtr pProvCtx)&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font face="Courier New"&gt;&amp;#160;&amp;#160; at System.Security.Cryptography.SafeProvHandle.ReleaseHandle()&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font face="Courier New"&gt;&amp;#160;&amp;#160; at System.Runtime.InteropServices.SafeHandle.InternalFinalize()&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font face="Courier New"&gt;&amp;#160;&amp;#160; at System.Runtime.InteropServices.SafeHandle.Dispose(Boolean disposing)&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font face="Courier New"&gt;&amp;#160;&amp;#160; at System.Runtime.InteropServices.SafeHandle.Finalize()&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;If you see this error message from SharePoint 2010 you can relax, nothing bad is happening. When SharePoint 2010 and Visual Studio 2010 are both installed on the same machine you may see this error every 24 hours. This occurs when the OWSTimer service has a regular process recycle and in the shutdown of the old process an exception is raised. The exception doesn’t interfere with the normal process shutdown and recycle and is only ever seen if you have a JIT debugger installed on the machine. You should never see this error on a production SharePoint 2010 server, because you should not be installing Visual Studio 2010 on those servers. You can safely ignore these exceptions and close the window, or leave it there. You actually cannot debug the process, because it will already have been closed by the time you click the button and start your debugger.&lt;/p&gt;  &lt;p&gt;You can avoid the popup exception message entirely by disabling JIT debugging on your machine. Bear in mind this will disable JIT debugging for all applications on the machine.&lt;/p&gt;  &lt;p&gt;To configure the server to no longer show a dialog when an unhandled exception occurs, use the registry editor to delete the following registry keys:&lt;/p&gt;  &lt;p&gt;· HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AeDebug\Debugger&lt;/p&gt;  &lt;p&gt;· HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework\DbgManagedDebugger&lt;/p&gt;  &lt;p&gt;On a 64-bit operating system also delete the following registry keys:&lt;/p&gt;  &lt;p&gt;· HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\AeDebug\Debugger&lt;/p&gt;  &lt;p&gt;· HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\.NETFramework\DbgManagedDebugger&lt;/p&gt;  &lt;p&gt;More details on JIT Debugging are at:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/5hs4b7a6(VS.80).aspx"&gt;http://msdn.microsoft.com/en-us/library/5hs4b7a6(VS.80).aspx&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10015160" width="1" height="1"&gt;</description></item><item><title>VSeWSS cannot be used on a SharePoint farm installation</title><link>http://blogs.msdn.com/b/pandrew/archive/2010/05/25/vsewss-cannot-be-used-on-a-sharepoint-farm-installation.aspx</link><pubDate>Tue, 25 May 2010 21:58:16 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10015159</guid><dc:creator>Paul Andrew</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/rsscomments.aspx?WeblogPostID=10015159</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/commentapi.aspx?WeblogPostID=10015159</wfw:comment><comments>http://blogs.msdn.com/b/pandrew/archive/2010/05/25/vsewss-cannot-be-used-on-a-sharepoint-farm-installation.aspx#comments</comments><description>&lt;p&gt;I saw a call stack today from an attempt to use VSeWSS 1.3 on a SharePoint 2007 farm installation. VSeWSS is the Visual Studio 2008 extensions for Windows SharePoint Services 3.0. It requires WSS 3.0 or MOSS 2007 and also Visual Studio 2008. The SharePoint installation needs to be standalone and not part of a farm. If you install on a machine that is part of a farm here is a likely call stack from an exception during deployment of a simple web part.&lt;/p&gt;  &lt;p&gt;[DATE] [TIME]&amp;#160;&amp;#160;&amp;#160; Error    &lt;br /&gt;System.InvalidOperationException: Feature 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX' is not installed in this farm, and can not be added to this scope.     &lt;br /&gt;&amp;#160;&amp;#160; at Microsoft.SharePoint.Tools.Reflection.ReflectionUtility.InvokeMethod(MethodBase method, Object instance, Object[] parameters)     &lt;br /&gt;&amp;#160;&amp;#160; at Microsoft.SharePoint.Tools.Reflection.ReflectionUtility.InvokeMethod(Type type, String methodName, Object instance, Object[] parameters)     &lt;br /&gt;&amp;#160;&amp;#160; at Microsoft.SharePoint.Tools.SharePointProxies.SPProxy.InvokeMethod(String name, Object[] parameters)     &lt;br /&gt;&amp;#160;&amp;#160; at Microsoft.SharePoint.Tools.SharePointProxies.SPFeatureCollectionProxy.Add(Guid id)     &lt;br /&gt;&amp;#160;&amp;#160; at Microsoft.SharePoint.Tools.SharePointProxies.SPSiteFacade.AddFeature(String url, Guid id)     &lt;br /&gt;&amp;#160;&amp;#160; at VSeWSS.Server.Services.SPService.AddSiteFeature(String url, Guid id)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10015159" width="1" height="1"&gt;</description></item><item><title>Getting Started with SharePoint 2010 Development</title><link>http://blogs.msdn.com/b/pandrew/archive/2010/05/12/getting-started-with-sharepoint-2010-development.aspx</link><pubDate>Wed, 12 May 2010 17:15:56 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10011847</guid><dc:creator>Paul Andrew</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/rsscomments.aspx?WeblogPostID=10011847</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/commentapi.aspx?WeblogPostID=10011847</wfw:comment><comments>http://blogs.msdn.com/b/pandrew/archive/2010/05/12/getting-started-with-sharepoint-2010-development.aspx#comments</comments><description>&lt;p&gt;We just published &lt;a href="http://msdn.microsoft.com/en-us/sharepoint/ee513148.aspx" target="_blank"&gt;an online course for developers to learn about SharePoint 2010&lt;/a&gt;. This is updated for RTM. If you have some experience developing with .NET then you can learn SharePoint. The course includes:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;10 modules introducing developers to SharePoint 2010 &lt;/li&gt;    &lt;li&gt;55 short instructional and demonstration demos &lt;/li&gt;    &lt;li&gt;Hands on labs that you can download or try online with MSDN Virtual Labs &lt;/li&gt;    &lt;li&gt;Test your skills quiz’s &lt;/li&gt;    &lt;li&gt;Code samples for each module &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/pandrew/WindowsLiveWriter/GettingStartedwithSharePoint2010Developm_9058/image_2.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/pandrew/WindowsLiveWriter/GettingStartedwithSharePoint2010Developm_9058/image_thumb.png" width="431" height="460" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;If you want to run the Hands on Labs on your own machine we have &lt;a href="http://msdn.microsoft.com/en-us/library/ee554869(office.14).aspx" target="_blank"&gt;instructions for installing SharePoint 2010 on Windows 7&lt;/a&gt;. Or you can &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=751fa0d1-356c-4002-9c60-d539896c66ce&amp;amp;displaylang=en" target="_blank"&gt;download a SharePoint 2010 hyper-v virtual machine&lt;/a&gt; that can be used with the Hands on Labs. &lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10011847" width="1" height="1"&gt;</description></item><item><title>SharePoint 2010 Developer Virtual Labs Online</title><link>http://blogs.msdn.com/b/pandrew/archive/2010/05/12/sharepoint-2010-developer-virtual-labs-online.aspx</link><pubDate>Wed, 12 May 2010 14:55:17 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10011711</guid><dc:creator>Paul Andrew</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/rsscomments.aspx?WeblogPostID=10011711</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/commentapi.aspx?WeblogPostID=10011711</wfw:comment><comments>http://blogs.msdn.com/b/pandrew/archive/2010/05/12/sharepoint-2010-developer-virtual-labs-online.aspx#comments</comments><description>&lt;p&gt;Three new MSDN Virtual Labs are live running SharePoint Server 2010 and Visual Studio 2010. You can work on these labs and learn SharePoint 2010 development without having to install SharePoint 2010 or Visual Studio 2010 on your machine. All you need is a web browser that can support our remote desktop ActiveX control and you can run these labs on our servers.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://go.microsoft.com/?linkid=9729899" target="_blank"&gt;MSDN Virtual Lab: Developing a Visual Web Part in Visual Studio 2010&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;After completing this lab, you will be better able to work with existing Web Parts and Linq and also you will be more familiar with connecting two web parts.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://go.microsoft.com/?linkid=9729898" target="_blank"&gt;MSDN Virtual Lab: Developing a BCS External Content Type with Visual Studio 2010&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;After completing this lab, you will be better able to build a BCS External content type, create a Business Data Catalog Model project, configure the External Content Type for offline use, and open the list using Outlook.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://go.microsoft.com/?linkid=9729900" target="_blank"&gt;MSDN Virtual Lab: Developing SharePoint 2010 user interface with Silverlight in Visual Studio 2010&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;After completing this lab, you will be better able to create a basic Silverlight application that displays a SharePoint list inside a datagrid and deploy the Silverlight application to SharePoint, and also create a Silverlight application that displays SharePoint list data in a graph using the Silverlight Graphing controls.&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10011711" width="1" height="1"&gt;</description></item><item><title>Installing Scanner Drivers for my Networked Canon MP980</title><link>http://blogs.msdn.com/b/pandrew/archive/2010/05/01/installing-scanner-drivers-for-my-networked-canon-mp980.aspx</link><pubDate>Sun, 02 May 2010 03:21:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10005870</guid><dc:creator>Paul Andrew</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/rsscomments.aspx?WeblogPostID=10005870</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/commentapi.aspx?WeblogPostID=10005870</wfw:comment><comments>http://blogs.msdn.com/b/pandrew/archive/2010/05/01/installing-scanner-drivers-for-my-networked-canon-mp980.aspx#comments</comments><description>&lt;p&gt;I really like my Canon MP980 scanner. It scans 35mm negatives nicely and I can go to it anytime and scan a document which I can direct to any PC at home. But it&amp;rsquo;s really hard to install the drivers. And I tend to reinstall OS&amp;rsquo;s a lot. I&amp;rsquo;m using Windows 7 32 bit.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;(1) Download the files needed from &lt;a target="_blank" href="http://www.usa.canon.com/consumer/controller?act=ModelInfoAct&amp;amp;tabact=DownloadDetailTabAct&amp;amp;fcategoryid=334&amp;amp;modelid=17357"&gt;Canon for the MP980 Drivers Page&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;You will need:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;MP980 series MP Driver Ver. 1.03 for Network (Windows 7/Vista/XP/2000) &lt;br /&gt;mp980swinns103en.exe&lt;/li&gt;
&lt;li&gt;MP Navigator EX Ver. 2.03 (Windows 7/7 x64/Vista/Vista64/XP/2000) &lt;br /&gt;mpnexwin203ej.exe&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;(2) Run the driver installer mp980swinns103.exe. Even if you&amp;rsquo;re logged on as Administrator it will fail saying you need to be a member of the Administrators group. Do not dismiss the error dialog.&lt;/p&gt;
&lt;p&gt;Now locate the installer files at C:\Users\[username]\AppData\Local\Temp\mp980swinns103en where [username] is your login name.&lt;/p&gt;
&lt;p&gt;You&amp;rsquo;ll see MSETUP4.EXE, don&amp;rsquo;t use this, instead go to the WIN subdirectory. Right click on the MSETUP4.EXE there and choose Troubleshoot Compatibility. Choose Troubleshoot Program. Choose it ran on a previous version and that it needs more permissions. Choose that it ran on Windows XP SP3. &lt;/p&gt;
&lt;p&gt;The installer should now run. It needed to restart in the middle of installing and it failed a couple of times and I just chose try again.&lt;/p&gt;
&lt;p&gt;Choose Cancel on Network Setup of the Card Slot, then I seem to have to continue it, but just remember you can&amp;rsquo;t get rid of the drive once it&amp;rsquo;s mapped. I&amp;rsquo;m trying to avoid this drive mapping since I think it is causing Explorer hangs.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;(3) Run the scanner software installer mpnexwin203ej.exe. &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I don&amp;rsquo;t seem to need any of the other software downloads to scan or print.&lt;/p&gt;
&lt;p&gt;Software should be simpler.&lt;/p&gt;
&lt;p&gt;-- Update I'm running Windows 7 x64 now --&lt;/p&gt;
&lt;p&gt;I have a new machine with 8GB RAM and so I have to use Windows 7 x64. The 32 bit OS can't access more than 4GB of RAM.&lt;/p&gt;
&lt;p&gt;I've found that the Canon drivers now refuse to install if I set compatibilty to XP SP3 so my previous install trick doesn't work any more.&lt;/p&gt;
&lt;p&gt;I got it working again by logging out from my domain joined account, which is in the administrators group, and logging in as the machine administrator.&lt;/p&gt;
&lt;p&gt;I added the My Printer application this time as well so the download files are:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;mp980swin64ns103en.exe&lt;/strong&gt; - this is the 64 bit network printer and scanner driver, it's the second driver on canon's list&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;mpnexwin203ej.exe&lt;/strong&gt; - this is MPNavigatorEX which let's you work with the scanner&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;mypwin250en.exe&lt;/strong&gt; - this is My Printer which gives you access to printer settings and ink levels&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10005870" width="1" height="1"&gt;</description></item><item><title>Error occurred in deployment step – moving a workflow project to a new SharePoint 2010 machine</title><link>http://blogs.msdn.com/b/pandrew/archive/2010/04/27/error-occurred-in-deployment-step-moving-a-workflow-project-to-a-new-sharepoint-2010-machine.aspx</link><pubDate>Tue, 27 Apr 2010 19:54:11 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10003411</guid><dc:creator>Paul Andrew</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/rsscomments.aspx?WeblogPostID=10003411</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/commentapi.aspx?WeblogPostID=10003411</wfw:comment><comments>http://blogs.msdn.com/b/pandrew/archive/2010/04/27/error-occurred-in-deployment-step-moving-a-workflow-project-to-a-new-sharepoint-2010-machine.aspx#comments</comments><description>&lt;p&gt;If you get your first SharePoint 2010 workflow project from someone else, chances are you don’t have a Workflow History list on your SharePoint machine. This will result in this error message when you try to deploy the workflow from within Visual Studio 2010.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/pandrew/WindowsLiveWriter/Erroroccurredindeploymentstepmovingawork_B56E/clip_image002_2.jpg"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="clip_image002" border="0" alt="clip_image002" src="http://blogs.msdn.com/blogfiles/pandrew/WindowsLiveWriter/Erroroccurredindeploymentstepmovingawork_B56E/clip_image002_thumb.jpg" width="627" height="126" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Error occurred in deployment step ‘Activate Features’: Failed to create workflow association ‘WorkflowProject1 – Workflow1’. Cannot find SharePoint list with name “Workflow History” or GUID “4eac61bf-6b3b-4f7d-b73c-f073ccc4364d”.&lt;/p&gt;  &lt;p&gt;The easiest way to resolve this error is to start a new instance of Visual Studio 2010. Create a new SharePoint 2010 Workflow project and step through the wizard. During the create project wizard it will create the Workflow History list and you can then deploy the project you got from someone else.&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10003411" width="1" height="1"&gt;</description></item><item><title>This product requires Windows Server 2008 Service Pack 2 or above</title><link>http://blogs.msdn.com/b/pandrew/archive/2010/04/26/this-product-requires-windows-server-2008-service-pack-2-or-above.aspx</link><pubDate>Mon, 26 Apr 2010 16:53:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10002646</guid><dc:creator>Paul Andrew</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/rsscomments.aspx?WeblogPostID=10002646</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/commentapi.aspx?WeblogPostID=10002646</wfw:comment><comments>http://blogs.msdn.com/b/pandrew/archive/2010/04/26/this-product-requires-windows-server-2008-service-pack-2-or-above.aspx#comments</comments><description>&lt;P&gt;You can &lt;A href="http://www.microsoft.com/downloads/details.aspx?FamilyID=49c79a8a-4612-4e7d-a0b4-3bb429b46595&amp;amp;displayLang=en" mce_href="http://www.microsoft.com/downloads/details.aspx?FamilyID=49c79a8a-4612-4e7d-a0b4-3bb429b46595&amp;amp;displayLang=en"&gt;download SharePoint Foundation 2010&lt;/A&gt; now.&lt;/P&gt;
&lt;P&gt;The download page says it works on Windows 7 Enterprise; Windows 7 Professional; Windows 7 Ultimate; Windows Server 2008 R2; Windows Server 2008 Service Pack 2; Windows Vista Service Pack 2.&lt;/P&gt;
&lt;P&gt;If you try on Windows 7 or Windows Vista you get this error dialog.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Setup Errors&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Setup is unable to proceed due to the following error(s):&lt;BR&gt;This product requires Windows Server 2008 Service Pack 2 or above.&lt;BR&gt;Correct the issue(s) listed above and re-run setup.&lt;/P&gt;
&lt;P&gt;There is an article on MSDN which describes &lt;A href="http://msdn.microsoft.com/en-us/library/ee554869(office.14).aspx" mce_href="http://msdn.microsoft.com/en-us/library/ee554869(office.14).aspx"&gt;installing SharePoint 2010 on Windows 7&lt;/A&gt; that I helped write. It is now up to date for the final release of SharePoint 2010.&lt;/P&gt;
&lt;P&gt;The reason for the error is that SharePoint 2010 is only intended for use on Windows 7 and Windows Vista by developers. Production uses should use Windows Server,&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10002646" width="1" height="1"&gt;</description></item><item><title>Using BCS from Visual Studio 2010 for deployment to SharePoint Foundation 2010</title><link>http://blogs.msdn.com/b/pandrew/archive/2010/04/26/using-bcs-from-visual-studio-2010-for-deployment-to-sharepoint-foundation-2010.aspx</link><pubDate>Mon, 26 Apr 2010 15:59:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10002618</guid><dc:creator>Paul Andrew</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/rsscomments.aspx?WeblogPostID=10002618</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/pandrew/commentapi.aspx?WeblogPostID=10002618</wfw:comment><comments>http://blogs.msdn.com/b/pandrew/archive/2010/04/26/using-bcs-from-visual-studio-2010-for-deployment-to-sharepoint-foundation-2010.aspx#comments</comments><description>&lt;P&gt;Business Connectivity Services is the new version of the SharePoint 2007 technology called Business Data Catalog. The base of this technology is now available in SharePoint Foundation 2010 which is the free version of SharePoint. This means you can build an External Content Type in Visual Studio 2010 and deploy it to SharePoint Foundation 2010 and the code in the External Content Type retrieves the data which is then shown in a standard SharePoint list.&lt;/P&gt;
&lt;P&gt;Great technology. I wanted to link to the &lt;A href="http://blogs.msdn.com/vssharepointtoolsblog/archive/2010/04/02/deploy-a-bdc-model-project-to-sharepoint-foundation-2010-using-visual-studio-2010.aspx" mce_href="http://blogs.msdn.com/vssharepointtoolsblog/archive/2010/04/02/deploy-a-bdc-model-project-to-sharepoint-foundation-2010-using-visual-studio-2010.aspx"&gt;trick to making the External Content Type deploy from Visual Studio 2010 to SharePoint Foundation 2010&lt;/A&gt; which doesn't affect SharePoint Server 2010.&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10002618" width="1" height="1"&gt;</description></item></channel></rss>
