<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://weblogs.asp.net/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>Community Blogs : SharePoint 2007</title><link>http://weblogs.asp.net/communityblogs/archive/tags/SharePoint+2007/default.aspx</link><description>Tags: SharePoint 2007</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Iterating through all Web Applications in a SharePoint farm</title><link>http://weblogs.asp.net/jevgeni/archive/2009/12/27/iterating-through-all-web-applications-in-a-sharepoint-farm.aspx</link><pubDate>Sun, 27 Dec 2009 16:26:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7292384</guid><dc:creator>ASP.NET Weblogs</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/communityblogs/rsscomments.aspx?PostID=7292384</wfw:commentRss><comments>http://weblogs.asp.net/jevgeni/archive/2009/12/27/iterating-through-all-web-applications-in-a-sharepoint-farm.aspx#comments</comments><description>Iterating through SPSiteCollection and SPWebCollection is a pretty simple, because getting these collections is a simple. SharePoint API doesn’t provide any method to get collection of all Web Applications in a farm. Here we need to write more code, than we are getting collections of SPSite or SPWeb. SPWebService provides collection of SPWebApplication, but it is only a part of all Web Applications, because SPFarm have many SP Web Services. Getting all services in a SP Farm: SPServiceCollection services = SPFarm.Local.Services; Here we should choose only Services which is of type SPWebService iterating through all services in a SPServiceCollection and check which is of type SPWebService if (curService is SPWebService) … Now we can iterate through...(&lt;a href="http://weblogs.asp.net/jevgeni/archive/2009/12/27/iterating-through-all-web-applications-in-a-sharepoint-farm.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7292384" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/communityblogs/archive/tags/C_2300_/default.aspx">C#</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/SharePoint+2007/default.aspx">SharePoint 2007</category></item><item><title>SharePoint Testing Strategies</title><link>http://weblogs.asp.net/erobillard/archive/2009/10/24/sharepoint-testing-strategies.aspx</link><pubDate>Sat, 24 Oct 2009 19:14:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7238203</guid><dc:creator>ASP.NET Weblogs</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/communityblogs/rsscomments.aspx?PostID=7238203</wfw:commentRss><comments>http://weblogs.asp.net/erobillard/archive/2009/10/24/sharepoint-testing-strategies.aspx#comments</comments><description>Someone recently asked about test plans and how to test components during development so you can be comfortable they&amp;#39;ll perform well when hosted on large farms. The short answer is that you want to create the best simulation you can, and that means creating a test farm as close to production as possible, and testing scenarios with patterns and data as close to production as possible. With mission-critical apps the test environment should be identical with production, but in most cases it won’t be...( read more ) Read More......(&lt;a href="http://weblogs.asp.net/erobillard/archive/2009/10/24/sharepoint-testing-strategies.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7238203" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/communityblogs/archive/tags/SharePoint+2007/default.aspx">SharePoint 2007</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/_2100_+Original+Content/default.aspx">! Original Content</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/SharePoint/default.aspx">SharePoint</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/SharePoint+2010/default.aspx">SharePoint 2010</category></item><item><title>Building and Packaging SharePoint Solutions</title><link>http://weblogs.asp.net/erobillard/archive/2009/07/30/Building-and-Packaging-SharePoint-Solutions-and-the-WSPSolution-Project.aspx</link><pubDate>Fri, 31 Jul 2009 03:25:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7158448</guid><dc:creator>ASP.NET Weblogs</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/communityblogs/rsscomments.aspx?PostID=7158448</wfw:commentRss><comments>http://weblogs.asp.net/erobillard/archive/2009/07/30/Building-and-Packaging-SharePoint-Solutions-and-the-WSPSolution-Project.aspx#comments</comments><description>In my last post I described a strategy for: Planning SharePoint Solution Packages . In this post we&amp;#39;ll construct a sample solution template, use that template to construct a real solution, package this as a WSP, and finally (once you have many WSPs) wrap the entire process with a routine to automate the build. You can download the sample code from the WSPSolution project on CodePlex. Let&amp;#39;s get started. The strategy uses Visual Studio 2008 to build the assemblies and WSPBuilder to generate SharePoint...( read more ) Read More......(&lt;a href="http://weblogs.asp.net/erobillard/archive/2009/07/30/Building-and-Packaging-SharePoint-Solutions-and-the-WSPSolution-Project.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7158448" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/communityblogs/archive/tags/SharePoint+2007/default.aspx">SharePoint 2007</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/_2100_+Original+Content/default.aspx">! Original Content</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/SharePoint/default.aspx">SharePoint</category></item><item><title>Toronto SharePoint User Group Wednesday, July 15: Feature Sets and Alerts</title><link>http://weblogs.asp.net/erobillard/archive/2009/07/14/toronto-sharepoint-user-group-wednesday-july-15-feature-sets-and-alerts.aspx</link><pubDate>Tue, 14 Jul 2009 15:05:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7147257</guid><dc:creator>ASP.NET Weblogs</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/communityblogs/rsscomments.aspx?PostID=7147257</wfw:commentRss><comments>http://weblogs.asp.net/erobillard/archive/2009/07/14/toronto-sharepoint-user-group-wednesday-july-15-feature-sets-and-alerts.aspx#comments</comments><description>Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4 /* Style Definitions */ table.MsoNormalTable {mso-style-name:&amp;quot;Table Normal&amp;quot;; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority:99; mso-style-qformat:yes; mso-style-parent:&amp;quot;&amp;quot;; mso-padding-alt:0in 5.4pt 0in 5.4pt; mso-para-margin:0in; mso-para-margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:11.0pt; font-family:&amp;quot;Calibri&amp;quot;,&amp;quot;sans-serif&amp;quot;; mso-ascii-font-family:Calibri; mso...( read more ) Read More......(&lt;a href="http://weblogs.asp.net/erobillard/archive/2009/07/14/toronto-sharepoint-user-group-wednesday-july-15-feature-sets-and-alerts.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7147257" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Events/default.aspx">Events</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/SharePoint+2007/default.aspx">SharePoint 2007</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/SharePoint/default.aspx">SharePoint</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Community+News/default.aspx">Community News</category></item><item><title>Eli's SharePoint 2007 Resources</title><link>http://weblogs.asp.net/erobillard/archive/2009/07/06/eli-s-sharepoint-2007-resources.aspx</link><pubDate>Tue, 07 Jul 2009 01:28:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7141791</guid><dc:creator>ASP.NET Weblogs</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/communityblogs/rsscomments.aspx?PostID=7141791</wfw:commentRss><comments>http://weblogs.asp.net/erobillard/archive/2009/07/06/eli-s-sharepoint-2007-resources.aspx#comments</comments><description>What&amp;#39;s Here Welcome to my list of SharePoint 2007 Resources! This is a hub for SharePoint 2007 and WSS 3.0 Resources with two advantages: All resources are hand-picked and vetted for quality, and each topic contains a with hand-tuned search designed to return the latest content which you can then filter further to find what you need. R eference [ Search Results ] Wikipedia: SharePoint . Microsoft: SharePoint Server Home Page . Microsoft: Social Computing Home . KBAlertz . Receive free alerts whenever...( read more ) Read More......(&lt;a href="http://weblogs.asp.net/erobillard/archive/2009/07/06/eli-s-sharepoint-2007-resources.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7141791" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/communityblogs/archive/tags/SharePoint+2007/default.aspx">SharePoint 2007</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/_2100_+Original+Content/default.aspx">! Original Content</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/SharePoint/default.aspx">SharePoint</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Links/default.aspx">Links</category></item><item><title>Planning SharePoint Solution Packages (WSPs)</title><link>http://weblogs.asp.net/erobillard/archive/2009/06/19/planning-sharepoint-solution-packages-wsps.aspx</link><pubDate>Fri, 19 Jun 2009 22:02:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7130645</guid><dc:creator>ASP.NET Weblogs</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/communityblogs/rsscomments.aspx?PostID=7130645</wfw:commentRss><comments>http://weblogs.asp.net/erobillard/archive/2009/06/19/planning-sharepoint-solution-packages-wsps.aspx#comments</comments><description>SharePoint architects and developers often wonder how best to design solution packages for long-term ease of use, especially through upgrade cycles. In a survey of SharePoint developers I found a range of strategies from one monolithic WSP to hold everything, up to practically one per feature which resulted in as many as 50 WSPs for a project. The variance depended on the developer&amp;#39;s goals for maintenance. Application vendors want to keep things simple for admins, so a single solution per product...( read more ) Read More......(&lt;a href="http://weblogs.asp.net/erobillard/archive/2009/06/19/planning-sharepoint-solution-packages-wsps.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7130645" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/communityblogs/archive/tags/SharePoint+2007/default.aspx">SharePoint 2007</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/_2100_+Original+Content/default.aspx">! Original Content</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/SharePoint/default.aspx">SharePoint</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Architecture+and+Design/default.aspx">Architecture and Design</category></item><item><title>Toronto SharePoint User Group: May 27 and June 17</title><link>http://weblogs.asp.net/erobillard/archive/2009/05/20/toronto-sharepoint-user-group-may-27-and-june-17.aspx</link><pubDate>Wed, 20 May 2009 18:04:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7093704</guid><dc:creator>ASP.NET Weblogs</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/communityblogs/rsscomments.aspx?PostID=7093704</wfw:commentRss><comments>http://weblogs.asp.net/erobillard/archive/2009/05/20/toronto-sharepoint-user-group-may-27-and-june-17.aspx#comments</comments><description>This is a heads-up about two exciting TSPUG sessions coming soon: next week on May 27 and next month on June 17. Next Wednesday Bill Brockbank ( Navantis ) is leading a set of &amp;quot;Quick Hits&amp;quot;- these are 15 minute presentations by members on a variety of topics. Details of these micro-sessions will follow on the recently relaunched (and not entirely complete) TSPUG.com . While we&amp;#39;re on the topic, kudos to Bill and his team for relaunching our site! Then in June we&amp;#39;re exciting to have Max Yermakhanov...( read more ) Read More......(&lt;a href="http://weblogs.asp.net/erobillard/archive/2009/05/20/toronto-sharepoint-user-group-may-27-and-june-17.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7093704" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Events/default.aspx">Events</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/SharePoint+2007/default.aspx">SharePoint 2007</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/_2100_+Original+Content/default.aspx">! Original Content</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/SharePoint/default.aspx">SharePoint</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Community+News/default.aspx">Community News</category></item><item><title>Preview: The practical limits of people and SharePoint</title><link>http://weblogs.asp.net/erobillard/archive/2009/04/06/preview-the-practical-limits-of-people-and-sharepoint.aspx</link><pubDate>Tue, 07 Apr 2009 03:59:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7032359</guid><dc:creator>ASP.NET Weblogs</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/communityblogs/rsscomments.aspx?PostID=7032359</wfw:commentRss><comments>http://weblogs.asp.net/erobillard/archive/2009/04/06/preview-the-practical-limits-of-people-and-sharepoint.aspx#comments</comments><description>I&amp;#39;m in Montreal for SharePoint Summit 2009 , thinking about the session I&amp;#39;m delivering on Tuesday afternoon. The goal is to distill all the useful knowledge that you won&amp;#39;t learn anywhere else, or at the very least, not all in one place. And none of it is in existing SharePoint books or articles. At least none that I know of, but I&amp;#39;d love to be surprised. The abstract (Ctrl-End to the bottom of this page ) follows the conventional Problem, Opportunity, Solution, Benefits, Agenda model, but it&amp;#39;s probably better to lay the cards out and say &amp;quot;here&amp;#39;s what you&amp;#39;re going to learn&amp;quot; and the best way to do that is to give you all of my sources here, before the start of the session and long before the final slide cleverly...(&lt;a href="http://weblogs.asp.net/erobillard/archive/2009/04/06/preview-the-practical-limits-of-people-and-sharepoint.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7032359" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Events/default.aspx">Events</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/SharePoint+2007/default.aspx">SharePoint 2007</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/_2100_+Original+Content/default.aspx">! Original Content</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/SharePoint/default.aspx">SharePoint</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Links/default.aspx">Links</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Architecture+and+Design/default.aspx">Architecture and Design</category></item><item><title>TSPUG Tonight: Workflow, K2 and Twitter</title><link>http://weblogs.asp.net/erobillard/archive/2009/03/25/tspug-tonight-workflow-k2-and-twitter.aspx</link><pubDate>Wed, 25 Mar 2009 15:33:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7000454</guid><dc:creator>ASP.NET Weblogs</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/communityblogs/rsscomments.aspx?PostID=7000454</wfw:commentRss><comments>http://weblogs.asp.net/erobillard/archive/2009/03/25/tspug-tonight-workflow-k2-and-twitter.aspx#comments</comments><description>Attendees of the Wednesday March 25 edition of the Toronto SharePoint User Group will navigate the wonders of Document Life Cycle in SharePoint using K2 BlackPearl . Our own Bill Brockbank will verily demonstrate how K2 can be used to manage the governance, authoring and editing of a document library with nothing up his sleeves except K2&amp;#39;s BlackPearl. From there Bill will reveal the magic of multi-level approval before deeming a work as final and published. Magical stuff indeed. Bill Brockbank is a Microsoft SharePoint Server MVP and an experienced Solutions Architect with over 25 years of experience in software and hardware design. With such a wealth of industry knowledge, Bill is adept at envisioning practical solution architectures, problem...(&lt;a href="http://weblogs.asp.net/erobillard/archive/2009/03/25/tspug-tonight-workflow-k2-and-twitter.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7000454" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Events/default.aspx">Events</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/SharePoint+2007/default.aspx">SharePoint 2007</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/_2100_+Original+Content/default.aspx">! Original Content</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/SharePoint/default.aspx">SharePoint</category></item><item><title>Reminder TSPUG Tonight: SharePoint Solutions and Automating the Build</title><link>http://weblogs.asp.net/erobillard/archive/2009/02/18/reminder-tspug-tonight-sharepoint-solutions-and-automating-the-build.aspx</link><pubDate>Wed, 18 Feb 2009 21:23:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6916140</guid><dc:creator>ASP.NET Weblogs</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/communityblogs/rsscomments.aspx?PostID=6916140</wfw:commentRss><comments>http://weblogs.asp.net/erobillard/archive/2009/02/18/reminder-tspug-tonight-sharepoint-solutions-and-automating-the-build.aspx#comments</comments><description>The topic for tonight was suggested during the most recent Toronto SharePoint camp - How to structure SharePoint solutions in Visual Studio, and automate the build and WSP generation. Building SharePoint Solutions (WSP) is the most painful part of the development process. In this session attendees will learn how to take the pain away for SharePoint 2007 by structuring Visual Studio Solutions for easy management, and by automating the build and WSP creation. Presented by me, Eli Robillard with corrections, improvements and miscellaneous heckling by Bill Brockbank and you. See you there! If you can make it tonight, please RSVP (just a formality), so that Susie can determine how much pizza to order. Location: Nexient Learning @ 2 Bloor Street West...(&lt;a href="http://weblogs.asp.net/erobillard/archive/2009/02/18/reminder-tspug-tonight-sharepoint-solutions-and-automating-the-build.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6916140" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Events/default.aspx">Events</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/SharePoint+2007/default.aspx">SharePoint 2007</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/_2100_+Original+Content/default.aspx">! Original Content</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/SharePoint/default.aspx">SharePoint</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Community+News/default.aspx">Community News</category></item><item><title>The Toronto SharePoint Camp Kicked Ass</title><link>http://weblogs.asp.net/erobillard/archive/2009/01/26/the-toronto-sharepoint-camp-kicked-ass.aspx</link><pubDate>Mon, 26 Jan 2009 21:16:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6861001</guid><dc:creator>ASP.NET Weblogs</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/communityblogs/rsscomments.aspx?PostID=6861001</wfw:commentRss><comments>http://weblogs.asp.net/erobillard/archive/2009/01/26/the-toronto-sharepoint-camp-kicked-ass.aspx#comments</comments><description>A giant shout-out to the organizing committee, volunteers, sponsors and attendees of this year’s Toronto SharePoint Camp , what a great day! Chairman Bill Brockbank was pretty raspy (and full of Buckley’s), so I was the “voice” for the opening, and facilitator of the speaker round-table and raffle, but these things don’t happen without great people and planning. Everyone did a great job to be proud of. We had well over 200 attendees for 20 sessions delivered by 19 speakers including 5 MVPs representing a variety of specialties. Feedback was phenomenal ( here&amp;#39;s the first review from the wild ) with a lot of comments like “greatly exceeded expectations” and “I can’t believe you guys can offer this for free.” There were a few benefits we didn...(&lt;a href="http://weblogs.asp.net/erobillard/archive/2009/01/26/the-toronto-sharepoint-camp-kicked-ass.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6861001" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Events/default.aspx">Events</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/SharePoint+2007/default.aspx">SharePoint 2007</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/_2100_+Original+Content/default.aspx">! Original Content</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/SharePoint/default.aspx">SharePoint</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Community+News/default.aspx">Community News</category></item><item><title>Best Free SharePoint Downloads - updated</title><link>http://weblogs.asp.net/erobillard/archive/2009/01/23/best-free-sharepoint-downloads-updated.aspx</link><pubDate>Fri, 23 Jan 2009 17:36:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6858566</guid><dc:creator>ASP.NET Weblogs</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/communityblogs/rsscomments.aspx?PostID=6858566</wfw:commentRss><comments>http://weblogs.asp.net/erobillard/archive/2009/01/23/best-free-sharepoint-downloads-updated.aspx#comments</comments><description>http://weblogs.asp.net/erobillard/archive/2008/12/13/the-best-free-sharepoint-downloads.aspx I&amp;#39;ve added full descriptions to this living post to explain why these are the greatest downloads since O12 itself, it&amp;#39;s starting to look like a real resource. Philosophical question - do you love or hate these posts about such changes (posts about posts)? Are they as annoying as blog spam? Do you visit these pages on a regular basis anyway? See you all at Toronto SharePoint Camp tomorrow! Read More......(&lt;a href="http://weblogs.asp.net/erobillard/archive/2009/01/23/best-free-sharepoint-downloads-updated.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6858566" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/communityblogs/archive/tags/SharePoint+2007/default.aspx">SharePoint 2007</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/_2100_+Original+Content/default.aspx">! Original Content</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/SharePoint/default.aspx">SharePoint</category></item><item><title>Tonight: Toronto SharePoint User Group - We need you!</title><link>http://weblogs.asp.net/erobillard/archive/2009/01/21/tonight-toronto-sharepoint-user-group-we-need-you.aspx</link><pubDate>Wed, 21 Jan 2009 16:15:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6851527</guid><dc:creator>ASP.NET Weblogs</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/communityblogs/rsscomments.aspx?PostID=6851527</wfw:commentRss><comments>http://weblogs.asp.net/erobillard/archive/2009/01/21/tonight-toronto-sharepoint-user-group-we-need-you.aspx#comments</comments><description>Come out and warm up with the Toronto SharePoint User Group tonight at Yonge and Bloor from 6 to 8pm, as we hold a Volunteer Night to prepare for the Toronto SharePoint Camp coming up this Saturday. Whether you&amp;#39;re a member eager to give a couple hours back to your community, a new member looking for a bunch of great people to bounce ideas off of, a first-time speaker looking for some tips, a seasoned speaker with stories learned the hard way from conferences past, or just in it for the free pizza, come on out! We know you want to see sessions too, so by coming out and planning the day tonight, we can be sure to accommodate everyone&amp;#39;s schedule. Unless your name is Eli or Bill, it won&amp;#39;t be an all-day commitment, but we do need your...(&lt;a href="http://weblogs.asp.net/erobillard/archive/2009/01/21/tonight-toronto-sharepoint-user-group-we-need-you.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6851527" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Events/default.aspx">Events</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/SharePoint+2007/default.aspx">SharePoint 2007</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/_2100_+Original+Content/default.aspx">! Original Content</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/SharePoint/default.aspx">SharePoint</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Community+News/default.aspx">Community News</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Training/default.aspx">Training</category></item><item><title>The Best Free SharePoint Downloads</title><link>http://weblogs.asp.net/erobillard/archive/2008/12/13/the-best-free-sharepoint-downloads.aspx</link><pubDate>Sat, 13 Dec 2008 19:26:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6782828</guid><dc:creator>ASP.NET Weblogs</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/communityblogs/rsscomments.aspx?PostID=6782828</wfw:commentRss><comments>http://weblogs.asp.net/erobillard/archive/2008/12/13/the-best-free-sharepoint-downloads.aspx#comments</comments><description>This post will continue to be maintained to contain the best free utilities and downloads available for WSS and SharePoint 2007. It&amp;#39;s starting fairly raw; the plan is that over time descriptions will be written and categories will evolve. Scoping Tools SharePoint Manager SharePoint Analyzer Improvements and extensions to the out-of-box features Starter Kits Faceted Search Scot Hillier&amp;#39;s SharePoint Features Gary LaPointe&amp;#39;s STSADM extensions Developer Tools Visual Studio project templates : WSP Builder CAML Query Builder Reflector See also : How to build a SharePoint Developer Machine Read More......(&lt;a href="http://weblogs.asp.net/erobillard/archive/2008/12/13/the-best-free-sharepoint-downloads.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6782828" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/communityblogs/archive/tags/SharePoint+2007/default.aspx">SharePoint 2007</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/_2100_+Original+Content/default.aspx">! Original Content</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/SharePoint/default.aspx">SharePoint</category></item><item><title>SharePoint for Lunch with Joel Oleson: Thanks Everyone!</title><link>http://weblogs.asp.net/erobillard/archive/2008/12/12/sharepoint-for-lunch-with-joel-oleson-thanks-everyone.aspx</link><pubDate>Fri, 12 Dec 2008 20:53:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6780009</guid><dc:creator>ASP.NET Weblogs</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/communityblogs/rsscomments.aspx?PostID=6780009</wfw:commentRss><comments>http://weblogs.asp.net/erobillard/archive/2008/12/12/sharepoint-for-lunch-with-joel-oleson-thanks-everyone.aspx#comments</comments><description>I just got back from the Toronto SharePoint User Group&amp;#39;s year-end holiday party and it was a pretty excellent experience. First to thank our meeting sponsors: Quest Software and Nonlinear Creations for picking up the lunch tab, that was an unexpected but much appreciated holiday surprise. And thanks again to Quest for bringing Joel to town! After a few logistical hurdles at the restaurant, Joel presented a thought-provoking and insightful talk on SharePoint governance, and eventually we let him eat too. There were no less than 5 MVPs in attendance - myself, Reza Alirezaei, and Bill Brockback representing SharePoint, and Rob Windsor and Ed Musters representing VB and C# respectively. There were also a number of local luminaries and past user...(&lt;a href="http://weblogs.asp.net/erobillard/archive/2008/12/12/sharepoint-for-lunch-with-joel-oleson-thanks-everyone.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6780009" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Events/default.aspx">Events</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/SharePoint+2007/default.aspx">SharePoint 2007</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/_2100_+Original+Content/default.aspx">! Original Content</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/SharePoint/default.aspx">SharePoint</category><category domain="http://weblogs.asp.net/communityblogs/archive/tags/Community+News/default.aspx">Community News</category></item></channel></rss>