<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://www.rightpointconsulting.com/community/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>Viewpoint</title><link>http://www.rightpointconsulting.com/community/blogs/viewpoint/default.aspx</link><description /><dc:language>en</dc:language><generator>CommunityServer 2008.5 SP1 (Build: 31106.3070)</generator><item><title>Quick Tip: Checking all sub-items in a TreeView of checkboxes</title><link>http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/2010/03/01/quick-tip-checking-all-sub-items-in-a-treeview-of-checkboxes.aspx</link><pubDate>Mon, 01 Mar 2010 19:19:31 GMT</pubDate><guid isPermaLink="false">f7450ba4-a08e-465a-831a-f9a15c21b696:2774</guid><dc:creator>srousopoulos</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.rightpointconsulting.com/community/blogs/viewpoint/rsscomments.aspx?PostID=2774</wfw:commentRss><comments>http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/2010/03/01/quick-tip-checking-all-sub-items-in-a-treeview-of-checkboxes.aspx#comments</comments><description>&lt;p&gt;For a project I&amp;#39;m working on, I had to have a tree view of checkboxes in order to facilitate filtering some search results.  No big deal, that&amp;#39;s what the ASP.Net TreeView control is for.  However, I also needed a way to let selecting a checkbox at one node modify all of its children&amp;#39;s checkboxes.  And this is why I love JQuery:
&lt;/p&gt;&lt;p&gt;&lt;span style="font-family:Consolas;font-size:10pt;"&gt;$(&amp;quot;.AdvancedFilter input:checkbox&amp;quot;).click(function(){
&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family:Consolas;font-size:10pt;"&gt;    $(this).closest(&amp;quot;table&amp;quot;).next(&amp;quot;div&amp;quot;).find(&amp;quot;input:checkbox&amp;quot;).attr(&amp;quot;checked&amp;quot;, $(this).attr(&amp;quot;checked&amp;quot;));
&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family:Consolas;font-size:10pt;"&gt;});
&lt;/span&gt;&lt;/p&gt;&lt;p&gt;
 &lt;/p&gt;&lt;p&gt;Done!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://www.rightpointconsulting.com/community/aggbug.aspx?PostID=2774" width="1" height="1"&gt;</description></item><item><title>Get This: Title Icon in Web Part</title><link>http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/2010/02/22/get-this-title-icon-in-web-part.aspx</link><pubDate>Mon, 22 Feb 2010 19:55:00 GMT</pubDate><guid isPermaLink="false">f7450ba4-a08e-465a-831a-f9a15c21b696:2773</guid><dc:creator>Kathryn Ciaralli</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.rightpointconsulting.com/community/blogs/viewpoint/rsscomments.aspx?PostID=2773</wfw:commentRss><comments>http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/2010/02/22/get-this-title-icon-in-web-part.aspx#comments</comments><description>&lt;p&gt;On many occasions I have needed to use an image icon within the title of a given web part; this dresses up the web part and adds visual appeal.&amp;nbsp; Historically, I have addressed this either using styles (with an image background) or a content editor web part&amp;nbsp; (and setting the chrome to none on the web part in question) to get the desired effect.&amp;nbsp; This has always been somewhat painful and I was surprised that Microsoft hadn&amp;#39;t addressed this.&amp;nbsp; Well, they had - I just didn&amp;#39;t know it.&amp;nbsp; :)&lt;/p&gt;
&lt;p&gt;On a project last summer I stumbled upon the Title Icon in web parts...I had never noticed it before!!&amp;nbsp; For those of you that had, to some degree, ignored the Advanced settings of a web part - this is where you will find the Title Icon (and yes - this is super duper easy).&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Navigate to the page where the web part is located&lt;/li&gt;
&lt;li&gt;Modify Shared Web Part&lt;ol&gt;
&lt;li&gt;Expand the &amp;quot;Advanced&amp;quot; section&lt;/li&gt;
&lt;li&gt;In the &amp;quot;Title Icon Image&amp;quot; URL field - enter the URL of the icon to be displayed&lt;ol&gt;
&lt;li&gt;&lt;a href="http://www.rightpointconsulting.com/community/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/viewpoint/titleiconimage.PNG"&gt;&lt;img src="http://www.rightpointconsulting.com/community/resized-image.ashx/__size/550x0/__key/CommunityServer.Blogs.Components.WeblogFiles/viewpoint/titleiconimage.PNG" border="0" alt="" /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;br /&gt;&lt;/ol&gt;&lt;/li&gt;
&lt;li&gt;...and voila - the image is resized on the fly and sits nicely in line with the web part title:&lt;ol&gt;
&lt;li&gt;&lt;a href="http://www.rightpointconsulting.com/community/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/viewpoint/calendar.PNG"&gt;&lt;img src="http://www.rightpointconsulting.com/community/resized-image.ashx/__size/550x0/__key/CommunityServer.Blogs.Components.WeblogFiles/viewpoint/calendar.PNG" border="0" alt="" /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://www.rightpointconsulting.com/community/aggbug.aspx?PostID=2773" width="1" height="1"&gt;</description><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/SharePoint/default.aspx">SharePoint</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/MOSS/default.aspx">MOSS</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/images/default.aspx">images</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/title+icon/default.aspx">title icon</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/web+parts/default.aspx">web parts</category></item><item><title>Get This: Search Stemming in MOSS 2007</title><link>http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/2010/02/22/get-this-search-stemming-in-moss-2007.aspx</link><pubDate>Mon, 22 Feb 2010 19:39:00 GMT</pubDate><guid isPermaLink="false">f7450ba4-a08e-465a-831a-f9a15c21b696:2772</guid><dc:creator>Kathryn Ciaralli</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.rightpointconsulting.com/community/blogs/viewpoint/rsscomments.aspx?PostID=2772</wfw:commentRss><comments>http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/2010/02/22/get-this-search-stemming-in-moss-2007.aspx#comments</comments><description>&lt;p&gt;How many times have you searched for something in SharePoint that you KNOW is out there and has been crawled, but it doesn&amp;#39;t come up in your search results?&amp;nbsp; Then it hits you like a bolt of lightning...you searched for the singular version of a term but the term that&amp;#39;s out there is the plural version.&amp;nbsp; Why didn&amp;#39;t it come up in your search results?&amp;nbsp; Do you really need a best bet for that?&amp;nbsp; Nope.&amp;nbsp; You just need to enable Search Stemming, which btw is native to MOSS 2007.&amp;nbsp; Here&amp;#39;s how:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Navigate to the search results page&lt;/li&gt;
&lt;li&gt;Edit the page&lt;/li&gt;
&lt;li&gt;Modify the &amp;quot;Search Core Results&amp;quot; web part&lt;ol&gt;
&lt;li&gt;Expand the &amp;quot;Results Query Options&amp;quot; section&lt;/li&gt;
&lt;li&gt;Check &amp;quot;Enable Search Term Stemming&amp;quot;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.rightpointconsulting.com/community/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/viewpoint/stemming.PNG"&gt;&lt;img src="http://www.rightpointconsulting.com/community/resized-image.ashx/__size/550x0/__key/CommunityServer.Blogs.Components.WeblogFiles/viewpoint/stemming.PNG" border="0" alt="" /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Yep - that&amp;#39;s all there is to it.&amp;nbsp; Now - why isn&amp;#39;t this enabled by default?&amp;nbsp; Apparently this is not supported in all languages, thus it&amp;#39;s disabled by default.&amp;nbsp; Now if you can just remember to do this with every implementation you would be all set.&amp;nbsp; :)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://www.rightpointconsulting.com/community/aggbug.aspx?PostID=2772" width="1" height="1"&gt;</description><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/SharePoint/default.aspx">SharePoint</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/search/default.aspx">search</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/Get+This/default.aspx">Get This</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/stemming/default.aspx">stemming</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/MOSS/default.aspx">MOSS</category></item><item><title>SharePoint 2007 Search Administration: Scheduling and the UI</title><link>http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/2010/02/19/sharepoint-2007-search-administration-scheduling-and-the-ui.aspx</link><pubDate>Fri, 19 Feb 2010 17:40:00 GMT</pubDate><guid isPermaLink="false">f7450ba4-a08e-465a-831a-f9a15c21b696:2771</guid><dc:creator>Jeremy Williams</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.rightpointconsulting.com/community/blogs/viewpoint/rsscomments.aspx?PostID=2771</wfw:commentRss><comments>http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/2010/02/19/sharepoint-2007-search-administration-scheduling-and-the-ui.aspx#comments</comments><description>&lt;p&gt;As an SSP administrator, one can control and tweak the many aspects of SharePoint Search.&amp;nbsp; One piece of the puzzle an admin can configure is a content source.&amp;nbsp; For the uninitiated, a content source is simply a location where SharePoint Search is going to go out and look for files.&amp;nbsp; Some examples of content sources could be all of your SharePoint sites, a file share, or even your public website.&amp;nbsp; When configuring a content source, an administrator must choose how often that source will be crawled.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;There are two types of crawls, a full crawl and an incremental crawl.&amp;nbsp; While there is an (almost) infinite number of schedules one could set up for their content source, I often see a full crawl happening relatively infrequently (once a week or month, depending on content size), and incremental crawls happening quite frequently (every 5-60 minutes).&amp;nbsp; Why?&amp;nbsp; Let&amp;rsquo;s say a user uploads a file to SharePoint and tells their buddy, &amp;ldquo;Hey, I just uploaded the document about Client ABC to SharePoint, go check it out!&amp;rdquo;&amp;nbsp; Their buddy (since he doesn&amp;rsquo;t know where the file is located) goes right to his trusty SharePoint search box and searches for &amp;ldquo;Client ABC&amp;rdquo;.&amp;nbsp; If an incremental crawl hasn&amp;rsquo;t run since the file was uploaded, then it won&amp;rsquo;t appear in the results.&amp;nbsp; This in turn makes for frustrated users, and an all around &amp;lsquo;bad&amp;rsquo; SharePoint experience [but alas, I digress..]&lt;/p&gt;
&lt;p&gt;Back to the point, when scheduling an incremental crawl, here&amp;rsquo;s a fairly typical starting point (picture below):&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.rightpointconsulting.com/community/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/viewpoint/image_5F00_2.png"&gt;&lt;img height="285" width="506" src="http://www.rightpointconsulting.com/community/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/viewpoint/image_5F00_thumb.png" alt="image" border="0" title="image" style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Everything seems to make sense in there, except for the last two text boxes.&amp;nbsp;&amp;nbsp; One way to interpret that section is, &amp;ldquo;Repeat the incremental crawl every 15 minutes and allow it to run for 1440 minutes&amp;rdquo;.&amp;nbsp; Based on this interpretation, one may be lead to believe that an incremental crawl could start and run as long as 1440 minutes (that&amp;rsquo;s 1 full day).&amp;nbsp; Well, as an SSP admin, I would hate for there to (potentially) be 1 crawl each day, so I&amp;rsquo;m going to change that 1440 to 20.&amp;nbsp; Great, I&amp;rsquo;ve got crawl set up and my users should always be able to find their files (relatively) quickly, right? &lt;/p&gt;
&lt;p&gt;Sadly, the answer is No.&amp;nbsp; That text is actually interpreted as, &amp;ldquo;Repeat the incremental crawl every 15 minutes, and continue crawling every 15 minutes for 1440 minutes.&amp;rdquo;&amp;nbsp; So, in my example above, the text becomes, &amp;ldquo;Repeat the incremental crawl every 15 minutes continue crawling every 15 minutes for 20 minutes.&amp;rdquo;&amp;nbsp; This will yield you exactly 2 incremental crawls everyday, one around midnight, and the other around 12:15&amp;hellip;After that, you&amp;rsquo;ll have to wait until midnight rolls around again.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;For some users, this might have been a &amp;ldquo;duh&amp;rdquo; type of post because they interpreted the text and control in the manner Microsoft intended.&amp;nbsp; However, other users may have incorrectly interpreted the text/controls as my example pointed out&amp;hellip;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://www.rightpointconsulting.com/community/aggbug.aspx?PostID=2771" width="1" height="1"&gt;</description><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/SharePoint/default.aspx">SharePoint</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/How+it+Works/default.aspx">How it Works</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/SharePoint+2007/default.aspx">SharePoint 2007</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/Troubleshooting/default.aspx">Troubleshooting</category></item><item><title>MySites and Quotas: The Nuances</title><link>http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/2010/02/16/mysites-and-quotas-the-nuances.aspx</link><pubDate>Tue, 16 Feb 2010 17:15:00 GMT</pubDate><guid isPermaLink="false">f7450ba4-a08e-465a-831a-f9a15c21b696:2770</guid><dc:creator>Jeremy Williams</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.rightpointconsulting.com/community/blogs/viewpoint/rsscomments.aspx?PostID=2770</wfw:commentRss><comments>http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/2010/02/16/mysites-and-quotas-the-nuances.aspx#comments</comments><description>&lt;p&gt;Site Quotas in SharePoint 2007 are a great tool, but they can sometimes be misunderstood.&amp;nbsp; One of the most common confusions with quotas comes with their interaction with MySites.&amp;nbsp; MySites (IMHO) are a great feature of SharePoint 2007, and are only getting better in SharePoint 2010.&amp;nbsp; However, the adoption of MySites in many organizations is organic and unplanned.&amp;nbsp; Right around the time that MySites near critical mass, the desire to wrap some additional governance around the sites crops up.&amp;nbsp; Arguably, one of the most obvious governance tools for MySites is a Site Quota.&amp;nbsp; So the governance committee decides on some thresholds and passes the implementation down to their Farm Administrators&amp;hellip;&amp;nbsp; &lt;/p&gt;
&lt;p&gt;Let&amp;rsquo;s put on our &amp;lsquo;Farm Administrator&amp;rsquo; hat&amp;hellip;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;I need to enforce a Personal Site quota on my users, so I&amp;rsquo;ll just set up the thresholds on the Personal Site quota template, and apply that to MySites.&amp;nbsp; After that, everyone now has that quota, right? &lt;b&gt;Wrong!&amp;nbsp; &lt;/b&gt;&lt;/p&gt;
&lt;p&gt;Okay, so that didn&amp;rsquo;t work and now I&amp;rsquo;m getting yelled at because users are uploading their personal photo and music collections to their MySites, thereby eating up all the space on our SAN.&amp;nbsp; Since editing the quota template didn&amp;rsquo;t do the trick, let&amp;rsquo;s go ahead and create a new template and apply that to MySites.&amp;nbsp; Alright, now everyone has that quota right? &lt;b&gt;Wrong Again!&amp;nbsp; &lt;/b&gt;[Aside: Remember, you can always block certain file extensions from ever being uploaded to SharePoint in Central Administration.]&lt;/p&gt;
&lt;p&gt;&lt;b&gt;&amp;nbsp;&lt;/b&gt;Darn it SharePoint, you&amp;rsquo;re really raining on my parade, what am I doing wrong?!?!&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Like many really annoying problems, this boils down to semantics&amp;hellip;Quotas are called &amp;lsquo;Quota Templates&amp;rsquo; for a reason, they are a template, and act just like a&amp;nbsp; site template would.&amp;nbsp; After applying a template, if I make a change to the template, all new sites using the template will take the new values; but the old sites will remain static.&amp;nbsp; Here&amp;rsquo;s a laundry list of nuances, and a quick demo/proof of this behavior:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;To reliably change the quotas of MySites, don&amp;rsquo;t create a new template, you&amp;rsquo;ll just want to edit the Personal Site Template.&amp;nbsp; I&amp;rsquo;m not saying that you can&amp;rsquo;t create your own templates, but why work harder if you can work smarter? &lt;/li&gt;
&lt;li&gt;Quotas act like site templates; they&amp;rsquo;re a snapshot&amp;hellip;So if I make site A when personal site quota = 10/8; then I change the quota to 50/40 and create site B, site B quota = 50/40, site A quota = 10/8 &lt;/li&gt;
&lt;li&gt;Don&amp;rsquo;t always rely on Central Admin to tell you the truth about site quotas and what a particular collection&amp;rsquo;s quota is; instead use the stsadm &amp;ndash;o enumsites command.&amp;nbsp; Screen-cap below: &lt;/li&gt;
&lt;/ul&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;a href="http://www.rightpointconsulting.com/community/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/viewpoint/clip_5F00_image002_5F00_2.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" alt="clip_image002" src="http://www.rightpointconsulting.com/community/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/viewpoint/clip_5F00_image002_5F00_thumb.jpg" border="0" width="511" height="158" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;ul&gt;
&lt;li&gt;&amp;nbsp;
&lt;ul&gt;
&lt;li&gt;Administrator was a manually set quota &lt;/li&gt;
&lt;li&gt;Test1 was using the initial Personal Site Template Quota &lt;/li&gt;
&lt;li&gt;Then I changed the Personal Site Template Quota, did an iisreset for good measure, and made test2&amp;rsquo;s MySite. &lt;/li&gt;
&lt;li&gt;So Test 1 and Test 2 used the same template, however they have different values since the template was different during each site&amp;rsquo;s respective build-time. &lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;At the end of the day, the best approach is to properly plan for MySites and enact a reasonable quota template right from the beginning.&amp;nbsp; If that isn&amp;rsquo;t an option, you can customize (or search for other&amp;rsquo;s customizations/extension) stsadm.exe to iterate through MySites and manually apply your new template.&amp;nbsp;&amp;nbsp; &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://www.rightpointconsulting.com/community/aggbug.aspx?PostID=2770" width="1" height="1"&gt;</description><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/Social+Networking/default.aspx">Social Networking</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/Social+Computing/default.aspx">Social Computing</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/How+it+Works/default.aspx">How it Works</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/SharePoint+2007/default.aspx">SharePoint 2007</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/Troubleshooting/default.aspx">Troubleshooting</category></item><item><title>2010: Year of the Social Intranet</title><link>http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/2010/02/03/2010-year-of-the-social-intranet.aspx</link><pubDate>Thu, 04 Feb 2010 04:41:00 GMT</pubDate><guid isPermaLink="false">f7450ba4-a08e-465a-831a-f9a15c21b696:2769</guid><dc:creator>jwillinger</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.rightpointconsulting.com/community/blogs/viewpoint/rsscomments.aspx?PostID=2769</wfw:commentRss><comments>http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/2010/02/03/2010-year-of-the-social-intranet.aspx#comments</comments><description>&lt;h2 id="posttitle_11009657"&gt;&lt;span style="font-family:Verdana,sans-serif;font-size:10pt;"&gt;Is your intranet &amp;lsquo;social&amp;rsquo;? Or is it antiquated?&lt;span&gt;&amp;nbsp; &lt;/span&gt;I recently read a blog post from Toby Ward who writes for Intranetblog.com and having been in living in SharePoint for the past three years, I am what you would call an evangelist for all things social within the four walls and outside the 4 walls.&lt;/span&gt;&lt;span style="font-family:Verdana,sans-serif;font-size:10pt;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span style="font-family:Verdana,sans-serif;font-size:10pt;"&gt;Social media on the intranet (Intranet 2.0) are present on about half of all intranets (in the Western World). Once a nice-to-have or a future wish, Intranet 2.0 tools such as blogs, wikis and other vehicles have become mainstream &amp;ndash; although not to all employees.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:Verdana,sans-serif;font-size:10pt;"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:Verdana,sans-serif;font-size:10pt;"&gt;Despite the low cost of entry, most intranet 2.0 tools are merely experiments, pilots or limited to a very small audience. Social media has only been deployed at the enterprise level in about 25% of organizations (see the results of the Intranet 2.0 Global Survey &lt;a href="http://www.prescientdigital.com/articles/intranet-articles/intranet-2-0-becomes-mainstream" title="Intranet 2.0 becomes mainstream"&gt;Intranet 2.0 becomes mainstream&lt;/a&gt;).&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p align="center" style="text-align:center;"&gt;&lt;span style="font-family:Verdana,sans-serif;font-size:10pt;"&gt;&lt;/span&gt;
&lt;p&gt;

&lt;span style="font-family:Verdana,sans-serif;font-size:10pt;"&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:Verdana,sans-serif;font-size:10pt;"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:Verdana,sans-serif;font-size:10pt;"&gt;Intranet wikis, for example, are increasingly popular: as of last year, employee wikis were present in 45% of all organizations (regardless of size), but only 17% of organizations had deployed them enterprise wide. The results for intranet blogs are similar: only 13% of organizations had deployed them at the enterprise level.&lt;/span&gt;&lt;span style="font-family:Verdana,sans-serif;font-size:10pt;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:Verdana,sans-serif;font-size:10pt;"&gt;Many of the experiments and pilots, the department and team level tools will be rolled-out to the rest (or most of the rest) of the enterprise in 2010. Still, more organizations that are sleeping through the social media revolution will jump on the bandwagon. 2010 will be the year of the social intranet.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:Verdana,sans-serif;font-size:10pt;"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:Verdana,sans-serif;font-size:10pt;"&gt;All social intranets are not necessarily built on SharePoint but it certainly helps.&lt;span&gt;&amp;nbsp; &lt;/span&gt;SharePoint 2010 has a robust social feature.&lt;/span&gt;&lt;/p&gt;
&lt;/p&gt;
&lt;div class="posterousGalleryMainDiv" id="dxCociqIfs"&gt;&lt;a href="http://jwillie.posterous.com/#" class="posterousGalleryMainlink"&gt;&lt;img height="362" width="500" src="http://posterous.com/getfile/files.posterous.com/jwillie/UdcRskF446xm0k8LNw4E20G9Ph6zy2ygWHY4wrvkY8KjXczTU8Bp4ypNLBgV/image001.jpg.scaled.500.jpg" id="mainImage" alt="" /&gt;&lt;span class="show"&gt;
&lt;div id="NaN" style="color:#ffffff;font-size:14px;"&gt;Click to view large&lt;/div&gt;
&lt;div class="posterousGalleryLink" id="NaN" style="display:none;font-size:14px;"&gt;Download this gallery (ZIP, undefined KB)&lt;/div&gt;
&lt;div class="posterousGalleryLink" id="NaN" style="font-size:14px;"&gt;Download full size (57 KB)&lt;/div&gt;
&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://www.rightpointconsulting.com/community/aggbug.aspx?PostID=2769" width="1" height="1"&gt;</description></item><item><title>Usability is Like Cooking</title><link>http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/2010/01/19/usability-is-like-cooking.aspx</link><pubDate>Tue, 19 Jan 2010 21:25:00 GMT</pubDate><guid isPermaLink="false">f7450ba4-a08e-465a-831a-f9a15c21b696:2768</guid><dc:creator>jwillinger</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.rightpointconsulting.com/community/blogs/viewpoint/rsscomments.aspx?PostID=2768</wfw:commentRss><comments>http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/2010/01/19/usability-is-like-cooking.aspx#comments</comments><description>&lt;h2 id="posttitle_10209880"&gt;I love this from &lt;a href="http://www.useit.com/jakob/" title="Author biography"&gt;&lt;span style="color:#0080c3;"&gt;&lt;span class="SpellE"&gt;&lt;b&gt;Jakob&lt;/b&gt;&lt;/span&gt;&lt;b&gt; Nielsen&lt;/b&gt;&lt;/span&gt;&lt;/a&gt;.&lt;span&gt;&amp;nbsp;&amp;nbsp; &lt;/span&gt;I get asked daily what is UX and UI all about, and does it really help my website to &lt;i&gt;pay&lt;/i&gt; a company to assist with usability or can I just do it myself&amp;hellip;We have an expanding usability practice at Rightpoint and wondered why become a Certified Usability Analyst?&lt;/h2&gt;
&lt;div class="post_body"&gt;
&lt;h1&gt;&lt;span style="color:black;"&gt;Anybody Can Do Usability&lt;/span&gt;&lt;/h1&gt;
&lt;p style="line-height:130%;"&gt;&lt;strong&gt;&lt;span style="font-family:Verdana, sans-serif;color:black;"&gt;Summary:&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-family:Verdana, sans-serif;color:black;"&gt; &lt;br /&gt;Usability is like cooking: everybody needs the results, anybody can do it reasonably well with a bit of training, and yet it takes a master to produce a gourmet outcome. &lt;/span&gt;&lt;/p&gt;
&lt;p style="line-height:130%;"&gt;&lt;span style="font-family:Verdana, sans-serif;color:black;"&gt;One of the &lt;/span&gt;&lt;a href="http://www.useit.com/alertbox/discount-usability.html" title="Alertbox: Discount Usability - 20 Years"&gt;&lt;span style="font-family:Verdana, sans-serif;color:#2222ff;"&gt;discount usability movement&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:Verdana, sans-serif;color:black;"&gt;&amp;#39;s basic tenets is that we need a drastic &lt;strong&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;expansion in the amount of usability work&lt;/span&gt;&lt;/strong&gt; done in the world, and to make this happen we need &lt;strong&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;more people to take on usability assignments&lt;/span&gt;&lt;/strong&gt;. &lt;/span&gt;&lt;/p&gt;
&lt;p style="line-height:130%;"&gt;&lt;span style="font-family:Verdana, sans-serif;color:black;"&gt;This goal is perfectly feasible for several reasons: &lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li style="line-height:130%;color:black;"&gt;&lt;a href="http://www.useit.com/alertbox/own-usability.html" title="Alertbox: Should Designers and Developers Do Usability?"&gt;&lt;span style="font-family:Verdana, sans-serif;color:#2222ff;"&gt;Designers and developers are capable&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt; of performing basic usability activities such as user testing. Small projects can cope without the benefit of dedicated usability experts. &lt;/span&gt;&lt;/li&gt;
&lt;li style="line-height:130%;color:black;"&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;Simplified usability (e.g., &lt;/span&gt;&lt;a href="http://www.useit.com/alertbox/20000319.html" title="Alertbox: Why You Only Need to Test with 5 Users"&gt;&lt;span style="font-family:Verdana, sans-serif;color:#2222ff;"&gt;testing 5 users&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;) can be &lt;strong&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;cheap&lt;/span&gt;&lt;/strong&gt; and easily &lt;/span&gt;&lt;a href="http://www.useit.com/alertbox/agile-user-experience.html" title="Alertbox: Agile User Experience Projects"&gt;&lt;span style="font-family:Verdana, sans-serif;color:#2222ff;"&gt;integrates with Agile development&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt; and other fast-moving projects. &lt;/span&gt;&lt;/li&gt;
&lt;li style="line-height:130%;color:black;"&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;The most important usability methods are &lt;strong&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;easy to learn&lt;/span&gt;&lt;/strong&gt;. For example, we teach design teams how to do user testing in a &lt;/span&gt;&lt;a href="http://www.nngroup.com/services/workshops/learnbydoing.html" title="Nielsen Norman Group consulting service"&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;&lt;span style="color:#0080c3;"&gt;3-day learning-by-doing workshop&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;, where we take them through a fast test of their own design with a few of their own customers. &lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p style="line-height:130%;"&gt;&lt;span style="font-family:Verdana, sans-serif;color:black;"&gt;Honestly, it takes only 3 days to complete a small usability project: &lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li style="line-height:130%;color:black;"&gt;&lt;strong&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;Day 1: &lt;/span&gt;&lt;/strong&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;Plan the study and write the test tasks. &lt;/span&gt;&lt;/li&gt;
&lt;li style="line-height:130%;color:black;"&gt;&lt;strong&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;Day 2: &lt;/span&gt;&lt;/strong&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;Test 5 users for about 1 hour each (cleaning up between sessions). &lt;/span&gt;&lt;/li&gt;
&lt;li style="line-height:130%;color:black;"&gt;&lt;strong&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;Day 3: &lt;/span&gt;&lt;/strong&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;Analyze the findings and write up the top recommended design improvements. &lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p style="line-height:130%;"&gt;&lt;span style="font-family:Verdana, sans-serif;color:black;"&gt;Even the fastest-moving project should be able to set aside 3 days to improve the user experience. There&amp;#39;s no excuse for unleashing your design on the unsuspecting public without at least one round of user testing. &lt;/span&gt;&lt;/p&gt;
&lt;p style="line-height:130%;"&gt;&lt;a href="http://www.nngroup.com/reports/roi/" title="Nielsen Norman Group report: Return on Investment for Usability"&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;&lt;span style="color:#0080c3;"&gt;Usability&amp;#39;s ROI&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:Verdana, sans-serif;color:black;"&gt; is huge: if you&amp;#39;ve never done any testing, you can typically at least double your conversion rate or other key business metrics. &lt;/span&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span style="color:black;"&gt;When Usability Experts Can Help&lt;/span&gt;&lt;/h2&gt;
&lt;p style="line-height:130%;"&gt;&lt;span style="font-family:Verdana, sans-serif;color:black;"&gt;I run a company that makes 1/3 of its money from usability consulting (the other 2/3 comes from publishing independent &lt;/span&gt;&lt;a href="http://www.nngroup.com/reports/" title=" Nielsen Norman Group: list of reports with usability guidelines"&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;&lt;span style="color:#0080c3;"&gt;user research reports&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:Verdana, sans-serif;color:black;"&gt; and hosting regular &lt;/span&gt;&lt;a href="http://www.nngroup.com/events/" title="Nielsen Norman Group: Usability Week conference program"&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;&lt;span style="color:#0080c3;"&gt;usability conferences&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:Verdana, sans-serif;color:black;"&gt;.) How can I say that &lt;em&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;anybody&lt;/span&gt;&lt;/em&gt; can do usability? Have I just written myself out of a job? No. &lt;/span&gt;&lt;/p&gt;
&lt;p style="line-height:130%;"&gt;&lt;strong&gt;&lt;span style="font-family:Verdana, sans-serif;color:black;"&gt;Usability is like cooking dinner: &lt;/span&gt;&lt;/strong&gt;&lt;span style="font-family:Verdana, sans-serif;color:black;"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li style="line-height:130%;color:black;"&gt;&lt;strong&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;Everybody needs the outcome&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;: As with your need to eat, your company needs to meet its business goals, which it can do much better if the design has been improved through usability. &lt;/span&gt;&lt;/li&gt;
&lt;li style="line-height:130%;color:black;"&gt;&lt;strong&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;Anybody can perform the most basic activities&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;: Most anyone can fry a chicken, cook potatoes, run a quick test with 5 customers, or score a design for compliance with a checklist of usability guidelines. &lt;/span&gt;&lt;/li&gt;
&lt;li style="line-height:130%;color:black;"&gt;&lt;strong&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;Anyone can learn these basics pretty quickly&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;: They&amp;#39;re not all that difficult. &lt;/span&gt;&lt;/li&gt;
&lt;li style="line-height:130%;color:black;"&gt;&lt;strong&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;There&amp;#39;s a level of excellence beyond the basics&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;: Going to a fancy restaurant and eating a meal cooked by a master chef is vastly different than eating something you throw together yourself in 20 minutes. Similarly, a usability expert will give you insights into your users&amp;#39; needs and your possible design directions that are much deeper than advice you&amp;#39;d get from someone whose main job is in a different field. &lt;/span&gt;&lt;/li&gt;
&lt;li style="line-height:130%;color:black;"&gt;&lt;strong&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;Skill levels form a continuum&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt; from beginner to expert; it&amp;#39;s not a dichotomy. Every time you learn something, your performance improves. Usability and cooking are particularly suited for continuing education, because anything you learn will remain &lt;/span&gt;&lt;a href="http://www.useit.com/alertbox/20050117.html" title="Alertbox: Durability of Usability Guidelines"&gt;&lt;span style="font-family:Verdana, sans-serif;color:#2222ff;"&gt;useful for many years&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt; to come. This is why I place so much emphasis on usability training: you get better results for every extra bit you learn. &lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p style="line-height:130%;"&gt;&lt;span style="font-family:Verdana, sans-serif;color:black;"&gt;The cooking analogy stretches even further: &lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li style="line-height:130%;color:black;"&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;Although multi-star gourmet restaurants are wonderful, there&amp;#39;s also a place in the world for &lt;strong&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;modest neighborhood restaurants&lt;/span&gt;&lt;/strong&gt;. Similarly, you should sometimes hire a second-tier usability firm or even a third-tier local consultant instead of bringing in a world-class usability firm. Most design projects include many workman-like, everyday usability activities that the lower-end guys can do well enough. &lt;/span&gt;&lt;/li&gt;
&lt;li style="line-height:130%;color:black;"&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;Even if you can afford it, you &lt;strong&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;shouldn&amp;#39;t eat out every day&lt;/span&gt;&lt;/strong&gt;. Your waistline benefits from getting more modest meals most of the week. Similarly, it&amp;#39;s good for your project if many day-to-day usability activities are performed by the designers and developers themselves. The more usability guidelines these people know, the fewer design mistakes they&amp;#39;ll make, and the less rework you&amp;#39;ll have to do after discovering how people really use your product. &lt;/span&gt;&lt;/li&gt;
&lt;li style="line-height:130%;color:black;"&gt;&lt;strong&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;Variety&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt; is the spice of life. Mexican, Indian, Chinese, Japanese, Italian, French. All great cuisines. Why pick only one? Similarly, combining many usability methods &amp;mdash; such as user testing, guideline reviews, analysis by independent experts, analytics or &lt;/span&gt;&lt;a href="http://www.useit.com/alertbox/20050815.html" title="Alertbox: Putting A-B Testing in Its Place"&gt;&lt;span style="font-family:Verdana, sans-serif;color:#2222ff;"&gt;A/B testing&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;, and field studies &amp;mdash; offers the best insights into optimal design. Experienced usability professionals have a very &lt;strong&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;rich toolbox&lt;/span&gt;&lt;/strong&gt; that goes beyond the simpler methods that anyone can use after a few days&amp;#39; training. &lt;/span&gt;&lt;/li&gt;
&lt;li style="line-height:130%;color:black;"&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;Sometimes it&amp;#39;s nice to &lt;strong&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;have others do the work&lt;/span&gt;&lt;/strong&gt;. Much as I love Indian food, I never cook it. Too much work to mix and roast the spices. And I don&amp;#39;t have a &lt;span class="SpellE"&gt;tandoor&lt;/span&gt; oven. The people who specialize in these things can do it faster and already have the right tool for the job. &lt;/span&gt;&lt;/li&gt;
&lt;li style="line-height:130%;color:black;"&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;There&amp;#39;s &lt;strong&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;value to being an outsider&lt;/span&gt;&lt;/strong&gt; who&amp;#39;s not restrained by corporate politics or &amp;quot;the way things are usually done.&amp;quot; In cooking, sometimes you want the chicken done differently than your grandmother&amp;#39;s sacred recipe demands. In usability, the person who takes a fresh view can see new things and can say things that insiders would be fired for even contemplating. (Maybe the VP&amp;#39;s big, beloved animation shouldn&amp;#39;t really be on the homepage. Feel free to blame me if you want to get rid of it.) &lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span style="font-family:Verdana, sans-serif;color:black;"&gt;It&amp;#39;s really a matter of &lt;strong&gt;&lt;span style="font-family:Verdana, sans-serif;"&gt;balance&lt;/span&gt;&lt;/strong&gt;. Yes, experts add value in usability, as in other walks of life. Yes, an &lt;/span&gt;&lt;a href="http://www.useit.com/alertbox/respect.html" title="Alertbox: Building Respect for Usability Expertise"&gt;&lt;span style="font-family:Verdana, sans-serif;color:#2222ff;"&gt;expert can go beyond most peoples&amp;#39;&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:Verdana, sans-serif;color:black;"&gt; accomplishments. But no, that doesn&amp;#39;t mean that usability should be the responsibility of the experts alone. Everybody on the team needs to take responsibility for improving the user experience. And anybody can do usability; the basic methods are simple enough.&lt;/span&gt;&lt;span style="color:gray;font-size:8pt;"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://www.rightpointconsulting.com/community/aggbug.aspx?PostID=2768" width="1" height="1"&gt;</description><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/Usability/default.aspx">Usability</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/agile+development/default.aspx">agile development</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/a_2F00_b+testing/default.aspx">a/b testing</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/balance/default.aspx">balance</category></item><item><title>Fixing SharePoint Search that is down due to error 1000</title><link>http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/2010/01/13/fixing-sharepoint-search-that-is-down-due-to-error-1000.aspx</link><pubDate>Wed, 13 Jan 2010 20:53:00 GMT</pubDate><guid isPermaLink="false">f7450ba4-a08e-465a-831a-f9a15c21b696:2767</guid><dc:creator>Jeremy Williams</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.rightpointconsulting.com/community/blogs/viewpoint/rsscomments.aspx?PostID=2767</wfw:commentRss><comments>http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/2010/01/13/fixing-sharepoint-search-that-is-down-due-to-error-1000.aspx#comments</comments><description>&lt;p class="MsoNormal"&gt;&lt;span style="font-family:Calibri;"&gt;&lt;span style="font-size:small;"&gt;&lt;b style="mso-bidi-font-weight:normal;"&gt;Situation: &lt;/b&gt;A SharePoint server experienced some really nasty search errors (error #1000, 5214, 6398, 6482, 7888, 10036).&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;The most annoying of all these (and one I hadn&amp;rsquo;t seen before was the error 1000, shown below).&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;A quick internet search turns up a number of blog posts and threads regarding general SharePoint search troubleshooting (ranging in recommendations from the classic multi-threaded IIS issue w/available hotfix, to full-blown SharePoint reinstall).&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;At the end of it all, it seems that a hybrid approach helped me to solve the issue.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span style="font-family:Calibri;font-size:small;"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;a href="http://www.rightpointconsulting.com/community/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/viewpoint/Error-1000.png"&gt;&lt;img src="http://www.rightpointconsulting.com/community/resized-image.ashx/__size/550x0/__key/CommunityServer.Blogs.Components.WeblogFiles/viewpoint/Error-1000.png" border="0" alt="" /&gt;&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span style="mso-no-proof:yes;"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span style="font-size:small;"&gt;&lt;span style="font-family:Calibri;"&gt;[Screenshot clipped to protect the innocent (servers)&lt;/span&gt;&lt;span style="font-family:Wingdings;mso-ascii-font-family:Calibri;mso-ascii-theme-font:minor-latin;mso-hansi-font-family:Calibri;mso-hansi-theme-font:minor-latin;mso-char-type:symbol;mso-symbol-font-family:Wingdings;"&gt;&lt;span style="mso-char-type:symbol;mso-symbol-font-family:Wingdings;"&gt;J&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family:Calibri;"&gt;].&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;b style="mso-bidi-font-weight:normal;"&gt;&lt;span style="font-family:Calibri;font-size:small;"&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span style="font-size:small;"&gt;&lt;span style="font-family:Calibri;"&gt;&lt;b style="mso-bidi-font-weight:normal;"&gt;Solution (In the form of those old pick-your-own adventure books):&lt;/b&gt;&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;The short of it is that SharePoint was pretty busted up by search; and I&amp;rsquo;m (unfortunately) still unsure what caused it to blow up.&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;As always, before you start really messing with Central Administration, &lt;strong&gt;be sure that you have a good SQL backup of your SharePoint content&lt;/strong&gt;.&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;I cannot stress this enough, if you don&amp;rsquo;t have a backup, you&amp;rsquo;re asking for trouble.&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;Alright, now that the necessary disclaimer is out of the way, the solution involved the following steps:&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoListParagraph"&gt;&lt;span style="mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;span style="mso-list:Ignore;"&gt;&lt;span style="font-family:Calibri;font-size:small;"&gt;1.&lt;/span&gt;&lt;span style="font:7pt &amp;#39;Times New Roman&amp;#39;;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:small;"&gt;&lt;span style="font-family:Calibri;"&gt;Ensure your install user account has full access to SQL (takes some permission issues out of the equation).&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoListParagraph"&gt;&lt;span style="mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;span style="mso-list:Ignore;"&gt;&lt;span style="font-family:Calibri;font-size:small;"&gt;2.&lt;/span&gt;&lt;span style="font:7pt &amp;#39;Times New Roman&amp;#39;;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:small;"&gt;&lt;span style="font-family:Calibri;"&gt;Attempt to stop then restart Office SharePoint Server search (net stop osearch, net stop osearch in a command prompt).&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoListParagraph" style="padding-left:30px;"&gt;&lt;span style="mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;span style="mso-list:Ignore;"&gt;&lt;span style="font-family:Calibri;font-size:small;"&gt;a.&lt;/span&gt;&lt;span style="font:7pt &amp;#39;Times New Roman&amp;#39;;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:small;"&gt;&lt;span style="font-family:Calibri;"&gt;Did that fix the issue?&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;If yes, go out and buy a &amp;lsquo;That was easy!&amp;rsquo; button&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoListParagraph" style="padding-left:30px;"&gt;&lt;span style="mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;span style="mso-list:Ignore;"&gt;&lt;span style="font-family:Calibri;font-size:small;"&gt;b.&lt;/span&gt;&lt;span style="font:7pt &amp;#39;Times New Roman&amp;#39;;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:small;"&gt;&lt;span style="font-family:Calibri;"&gt;If it didn&amp;rsquo;t fix it, Continue to 3 (Unless you&amp;rsquo;ve been here already, then go to 5).&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoListParagraph"&gt;&lt;span style="mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;span style="mso-list:Ignore;"&gt;&lt;span style="font-family:Calibri;font-size:small;"&gt;3.&lt;/span&gt;&lt;span style="font:7pt &amp;#39;Times New Roman&amp;#39;;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:small;"&gt;&lt;span style="font-family:Calibri;"&gt;Restart the SharePoint Server box/boxes; if you&amp;rsquo;re really paranoid, you&amp;rsquo;d want to restart SQL too.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoListParagraph"&gt;&lt;span style="mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;span style="mso-list:Ignore;"&gt;&lt;span style="font-family:Calibri;font-size:small;"&gt;4.&lt;/span&gt;&lt;span style="font:7pt &amp;#39;Times New Roman&amp;#39;;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:small;"&gt;&lt;span style="font-family:Calibri;"&gt;Repeat step 2.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoListParagraph"&gt;&lt;span style="mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;span style="mso-list:Ignore;"&gt;&lt;span style="font-family:Calibri;font-size:small;"&gt;5.&lt;/span&gt;&lt;span style="font:7pt &amp;#39;Times New Roman&amp;#39;;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:small;"&gt;&lt;span style="font-family:Calibri;"&gt;Okay, things are bad, but there&amp;rsquo;s still hope.&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;Read On!&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoListParagraph"&gt;&lt;span style="mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;span style="mso-list:Ignore;"&gt;&lt;span style="font-family:Calibri;font-size:small;"&gt;6.&lt;/span&gt;&lt;span style="font:7pt &amp;#39;Times New Roman&amp;#39;;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:small;"&gt;&lt;span style="font-family:Calibri;"&gt;Run the SharePoint Configuration wizard; leave the farm attached.&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;(Basically, we just want SharePoint to &amp;lsquo;repair&amp;rsquo; any of its configurations that may have been corrupted).&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;When the configuration wizard finishes, run an iisrest for good measure.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoListParagraph" style="padding-left:30px;"&gt;&lt;span style="mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;span style="mso-list:Ignore;"&gt;&lt;span style="font-family:Calibri;font-size:small;"&gt;a.&lt;/span&gt;&lt;span style="font:7pt &amp;#39;Times New Roman&amp;#39;;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:small;"&gt;&lt;span style="font-family:Calibri;"&gt;Did that fix the issue?&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;If yes, be thankful you aren&amp;rsquo;t like the other guys having to read on...&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoListParagraph" style="padding-left:30px;"&gt;&lt;span style="mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;span style="mso-list:Ignore;"&gt;&lt;span style="font-family:Calibri;font-size:small;"&gt;b.&lt;/span&gt;&lt;span style="font:7pt &amp;#39;Times New Roman&amp;#39;;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:small;"&gt;&lt;span style="font-family:Calibri;"&gt;If that didn&amp;rsquo;t fix it, don&amp;rsquo;t give up yet; there are still a few more things we can try, read on to 7.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoListParagraph"&gt;&lt;span style="mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;span style="mso-list:Ignore;"&gt;&lt;span style="font-family:Calibri;font-size:small;"&gt;7.&lt;/span&gt;&lt;span style="font:7pt &amp;#39;Times New Roman&amp;#39;;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:small;"&gt;&lt;span style="font-family:Calibri;"&gt;Wow, SharePoint is really broken here.&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;Before we bring out the big guns, let&amp;rsquo;s try running that configuration wizard again.&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;This time, you&amp;rsquo;re going to detach your server from the farm.&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;You will lose all of your configuration settings, so before you click the &amp;lsquo;Destroy&amp;rsquo; button, be sure you&amp;rsquo;re comfortable rebuilding SharePoint&amp;rsquo;s configuration.&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;Detach SharePoint from the farm and restart your MOSS box.&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;Once the server comes back up, you&amp;rsquo;ll want to run the Configuration Wizard again (it will look just like a new SharePoint install).&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;Remember, all your old configuration databases are still on SQL&amp;rsquo;s file system, so you&amp;rsquo;ll either have to remove/rename the old files or rename your new configuration databases.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoListParagraph" style="padding-left:30px;"&gt;&lt;span style="mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;span style="mso-list:Ignore;"&gt;&lt;span style="font-family:Calibri;font-size:small;"&gt;a.&lt;/span&gt;&lt;span style="font:7pt &amp;#39;Times New Roman&amp;#39;;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:small;"&gt;&lt;span style="font-family:Calibri;"&gt;Once you get a new SSP spun up, does search work?&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;If yes, see 8a.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoListParagraph" style="padding-left:30px;"&gt;&lt;span style="mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;span style="mso-list:Ignore;"&gt;&lt;span style="font-family:Calibri;font-size:small;"&gt;b.&lt;/span&gt;&lt;span style="font:7pt &amp;#39;Times New Roman&amp;#39;;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:small;"&gt;&lt;span style="font-family:Calibri;"&gt;Didn&amp;rsquo;t work?&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;Let&amp;rsquo;s go for broke in step 8.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoListParagraph"&gt;&lt;span style="mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;span style="mso-list:Ignore;"&gt;&lt;span style="font-family:Calibri;font-size:small;"&gt;8.&lt;/span&gt;&lt;span style="font:7pt &amp;#39;Times New Roman&amp;#39;;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:small;"&gt;&lt;span style="font-family:Calibri;"&gt;You&amp;rsquo;re going to repair your SharePoint installation now.&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;Detach SharePoint from the farm again (instructions in step 7, but don&amp;rsquo;t reattach this time). &lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp;&lt;/span&gt;Go to Control Panel&lt;/span&gt;&lt;span style="font-family:Wingdings;mso-ascii-font-family:Calibri;mso-ascii-theme-font:minor-latin;mso-hansi-font-family:Calibri;mso-hansi-theme-font:minor-latin;mso-char-type:symbol;mso-symbol-font-family:Wingdings;"&gt;&lt;span style="mso-char-type:symbol;mso-symbol-font-family:Wingdings;"&gt;&amp;agrave;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family:Calibri;"&gt;Add/Remove Programs (&amp;lt;=Server 2003) OR Programs and Features (&amp;gt;=Server 2008).&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;Find the SharePoint line item and select the &amp;lsquo;Repair&amp;rsquo; option.&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;This is (effectively) going to reinstall your SharePoint bits and bytes.&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;Once the repair has finished, go ahead and reattach and reattach your farm&amp;rsquo;s major content databases.&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;Set up the new SSP and verify that SharePoint search is now functioning.&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoListParagraph" style="padding-left:30px;"&gt;&lt;span style="mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;span style="mso-list:Ignore;"&gt;&lt;span style="font-family:Calibri;font-size:small;"&gt;a.&lt;/span&gt;&lt;span style="font:7pt &amp;#39;Times New Roman&amp;#39;;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:small;"&gt;&lt;span style="font-family:Calibri;"&gt;If yes, I recommend a congratulatory beverage.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoListParagraph" style="padding-left:30px;"&gt;&lt;span style="mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;span style="mso-list:Ignore;"&gt;&lt;span style="font-family:Calibri;font-size:small;"&gt;b.&lt;/span&gt;&lt;span style="font:7pt &amp;#39;Times New Roman&amp;#39;;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:small;"&gt;&lt;span style="font-family:Calibri;"&gt;Still nothing?&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;Check out the &amp;lsquo;Things to look for&amp;hellip;Antivirus&amp;rsquo; below.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoListParagraph"&gt;&lt;span style="font-family:Calibri;font-size:small;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;b style="mso-bidi-font-weight:normal;"&gt;&lt;span style="font-size:small;"&gt;&lt;span style="font-family:Calibri;"&gt;Things to look for&amp;hellip;Antivirus&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span style="font-size:small;"&gt;&lt;span style="font-family:Calibri;"&gt;If these steps still don&amp;rsquo;t fix search, take a look at the antivirus running on your SharePoint box.&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;Certain AV products don&amp;rsquo;t &amp;lsquo;play nice&amp;rsquo; with SharePoint, especially if the AV product isnt&amp;rsquo; specifically designed for servers like SharePoint.&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;If you happen to discover some antivirus that isn&amp;rsquo;t SharePoint specific, see this Microsoft article for paths that you should exclude from the A/V scan:&lt;span style="mso-spacerun:yes;"&gt; &lt;a href="http://support.microsoft.com/kb/952167"&gt;http://support.microsoft.com/kb/952167&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span style="font-size:small;"&gt;&lt;span style="font-family:Calibri;"&gt;&lt;span style="mso-spacerun:yes;"&gt;&lt;/span&gt;Once you&amp;rsquo;ve done that, try a restart and go through the troubleshooting steps again. &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://www.rightpointconsulting.com/community/aggbug.aspx?PostID=2767" width="1" height="1"&gt;</description><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/SharePoint/default.aspx">SharePoint</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/Intranet/default.aspx">Intranet</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/Troubleshooting/default.aspx">Troubleshooting</category></item><item><title>Why you can’t afford to ignore your users.</title><link>http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/2010/01/13/why-you-can-t-afford-to-ignore-your-users.aspx</link><pubDate>Wed, 13 Jan 2010 19:37:00 GMT</pubDate><guid isPermaLink="false">f7450ba4-a08e-465a-831a-f9a15c21b696:2766</guid><dc:creator>Melissa Federoff</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.rightpointconsulting.com/community/blogs/viewpoint/rsscomments.aspx?PostID=2766</wfw:commentRss><comments>http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/2010/01/13/why-you-can-t-afford-to-ignore-your-users.aspx#comments</comments><description>&lt;p&gt;&amp;lsquo;Usability&amp;rsquo; is a big buzz word these days in software and website development. Everyone says they want to have it, but in the end &amp;ndash; they don&amp;rsquo;t want to spend the time or money required to do it right. Usability is often the number one stated goal of a redesign, and then the first thing to get cut when budgets and timelines run short.&lt;/p&gt;
&lt;p&gt;You&amp;rsquo;re right &amp;ndash; usability isn&amp;rsquo;t a necessity in order to get something out in the world. But if you want something that your users will love, it is a requirement.&lt;/p&gt;
&lt;p&gt;Here&amp;#39;s my favorite analogy to explain what usability is and why it is valuable: Usability is to design as quality assurance is to code. I have used this analogy to explain usability to many software developers. You would never send your code out in the world without testing it and fixing bugs.&amp;nbsp; Why would you send your design out without testing it and fixing it too?&amp;nbsp; Without testing it you are just guessing and guessing leads to expensive mistakes (and more redesigns down the road).&lt;/p&gt;
&lt;p&gt;Most people think they can look at a design and judge whether other people will be able to use it or not.&amp;nbsp; I&amp;#39;ve personally run hundreds of usability tests along side of world-class designers and I can tell you honestly that I&amp;#39;ve never run a usability session where we didn&amp;#39;t discover a problem that we didn&amp;#39;t know existed.&amp;nbsp; Typically it&amp;#39;s not just one problem either, it&amp;#39;s tens or hundreds.&lt;/p&gt;
&lt;p&gt;Here are a few truths:&lt;/p&gt;
&lt;p&gt;(1)&amp;nbsp;&amp;nbsp; No one, no matter how savvy they are at design, can perfectly predict how actual users will use a site&lt;/p&gt;
&lt;p&gt;(2)&amp;nbsp;&amp;nbsp; If you designed it, it will always seem intuitive to you even if it doesn&amp;#39;t work for anyone else&lt;/p&gt;
&lt;p&gt;(3)&amp;nbsp;&amp;nbsp; Just because you are a user of the internet doesn&amp;rsquo;t make you a user of the site you are actually building&lt;/p&gt;
&lt;p&gt;So now that I&amp;#39;ve hopefully convinced you that you need to do this thing, you may be wondering how to go about doing it.&amp;nbsp; The best approach is to validate your assumptions and designs&amp;nbsp; all along the way.&amp;nbsp; Talk directly to users to find out what they need and what their problems are before you even start designing.&amp;nbsp; Show concepts to users to see if you are headed in the right direction.&amp;nbsp; Then run usability sessions to find out if your design is intuitive and easy to use (and iterate until you get there).&lt;/p&gt;
&lt;p&gt;It is a process, it does require design and research experts, but it works.&amp;nbsp; And the love and loyalty you will gain from your customers will be well worth it.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://www.rightpointconsulting.com/community/aggbug.aspx?PostID=2766" width="1" height="1"&gt;</description><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/Usability/default.aspx">Usability</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/digital+marketing/default.aspx">digital marketing</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/users/default.aspx">users</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/user+experience/default.aspx">user experience</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/design/default.aspx">design</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/interface/default.aspx">interface</category></item><item><title>Living in the Social Media Age: Are You?</title><link>http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/2010/01/11/living-in-the-social-media-age-are-you.aspx</link><pubDate>Mon, 11 Jan 2010 22:20:00 GMT</pubDate><guid isPermaLink="false">f7450ba4-a08e-465a-831a-f9a15c21b696:2765</guid><dc:creator>jwillinger</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.rightpointconsulting.com/community/blogs/viewpoint/rsscomments.aspx?PostID=2765</wfw:commentRss><comments>http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/2010/01/11/living-in-the-social-media-age-are-you.aspx#comments</comments><description>&lt;div class="post_body"&gt;
&lt;h2&gt;&lt;a href="http://mattroyse.wordpress.com/2009/09/20/living-in-the-social-media-age/" title="Permanent Link to Living in the Social Media&amp;amp;nbsp;Age"&gt;&lt;span style="color:#0080c3;"&gt;Living in the Social Media&amp;nbsp;Age&lt;/span&gt;&lt;/a&gt;: Are You?&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;More than 56% of marketers plan to incorporate social media into their businesses next year, according to a recent &lt;a target="_blank" href="http://www.bizreport.com/2009/09/social_media_on_marketers_menu_for_2010.html"&gt;&lt;span style="color:#0080c3;"&gt;survey&lt;/span&gt;&lt;/a&gt; by the Center for Media Research.
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;With so many social media channel options to choose from, which one do you use for your marketing communications strategy?&lt;/p&gt;
&lt;p&gt;In July 2009, Russell Herder and Ethos Business Law &lt;a target="_blank" href="http://www.russellherder.com/SocialMediaResearch/%29"&gt;&lt;span style="color:#0080c3;"&gt;study&lt;/span&gt;&lt;/a&gt; of national business leaders highlighted that the most popular social media channels were the following:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a target="_blank" href="http://www.facebook.com/home.php"&gt;&lt;span style="color:#0080c3;"&gt;Facebook&lt;/span&gt;&lt;/a&gt; (80%)&lt;/li&gt;
&lt;li&gt;&lt;a target="_blank" href="http://twitter.com/"&gt;&lt;span style="color:#0080c3;"&gt;Twitter &lt;/span&gt;&lt;/a&gt;(66%)&lt;/li&gt;
&lt;li&gt;&lt;a target="_blank" href="http://www.youtube.com/"&gt;&lt;span style="color:#0080c3;"&gt;YouTube &lt;/span&gt;&lt;/a&gt;(55%)&lt;/li&gt;
&lt;li&gt;&lt;a target="_blank" href="http://www.linkedin.com/"&gt;&lt;span style="color:#0080c3;"&gt;LinkedIn&lt;/span&gt;&lt;/a&gt; (49%)&lt;/li&gt;
&lt;li&gt;&lt;a target="_blank" href="http://blogsearch.google.com/"&gt;&lt;span style="color:#0080c3;"&gt;Blogs&lt;/span&gt;&lt;/a&gt; (43%)&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;In my first blog post, my audience confirmed that Facebook and Twitter were the most popular social media platforms.&amp;nbsp; So, as a marketer, should I use the most popular social media channel or a combination of both?&amp;nbsp; Well, the short answer is that it depends.&amp;nbsp; Since each tool works in a different way and with the social media landscape changing everyday, the key is to find out what your targeted audience likes to use.&lt;/p&gt;
&lt;p&gt;The bottom line is that you need to be a part of A conversation because these conversations are happening, whether you are in the social media game or not.&amp;nbsp; My next post will be focused more around SharePoint as that platform for an enterprise to build that social computing platform upon.&lt;/p&gt;
&lt;/p&gt;
&lt;div class="posterousGalleryMainDiv" id="HHnBugyxGf"&gt;&lt;img height="390" width="465" src="http://posterous.com/getfile/files.posterous.com/jwillie/vhsc5eoyq9yOBCy4oQvjFrqiX4PrFHidHTKKEqtY1qYv7Oq01EsS4tC13Es2/image001.gif" alt="" /&gt;&lt;/div&gt;

&lt;/div&gt;
&lt;div class="comment-area" id="post_commentarea_9772133"&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://www.rightpointconsulting.com/community/aggbug.aspx?PostID=2765" width="1" height="1"&gt;</description><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/twitter/default.aspx">twitter</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/SharePoint+2007/default.aspx">SharePoint 2007</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/YouTube/default.aspx">YouTube</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/LinkedIN/default.aspx">LinkedIN</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/Facebook/default.aspx">Facebook</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/Blogs/default.aspx">Blogs</category></item><item><title>5 Steps For Creating An Effective Digital Marketing Plan</title><link>http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/2010/01/10/5-steps-for-creating-an-effective-digital-marketing-plan.aspx</link><pubDate>Mon, 11 Jan 2010 01:59:00 GMT</pubDate><guid isPermaLink="false">f7450ba4-a08e-465a-831a-f9a15c21b696:2764</guid><dc:creator>rfreedman</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.rightpointconsulting.com/community/blogs/viewpoint/rsscomments.aspx?PostID=2764</wfw:commentRss><comments>http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/2010/01/10/5-steps-for-creating-an-effective-digital-marketing-plan.aspx#comments</comments><description>&lt;p class="MsoNormal"&gt;&lt;span class="dcap"&gt;&lt;span style="LINE-HEIGHT:115%;FONT-FAMILY:&amp;#39;Arial&amp;#39;,&amp;#39;sans-serif&amp;#39;;FONT-SIZE:10pt;"&gt;I believe every organization today needs a&lt;/span&gt;&lt;/span&gt;&lt;span style="LINE-HEIGHT:115%;FONT-FAMILY:&amp;#39;Arial&amp;#39;,&amp;#39;sans-serif&amp;#39;;FONT-SIZE:10pt;"&gt; digital marketing plan to be successful. &amp;nbsp;And while they may be able to maintain or even grow their revenue without one, their customers are gradually moving to the Internet to make buying decisions. &amp;nbsp;Companies without a strong digital marketing plan aren&amp;rsquo;t only leaving money on the table, they are loosing customers to those companies that do have a digital marketing strategy and plan. &lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span style="LINE-HEIGHT:115%;FONT-FAMILY:&amp;#39;Arial&amp;#39;,&amp;#39;sans-serif&amp;#39;;FONT-SIZE:10pt;"&gt;The following 5 steps outline how you can guide you and your organization through creating a simple, but effective digital marketing plan to compete in today&amp;rsquo;s digital marketplace.&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;b style="mso-bidi-font-weight:normal;"&gt;&lt;i style="mso-bidi-font-style:normal;"&gt;&lt;span style="LINE-HEIGHT:115%;FONT-FAMILY:&amp;#39;Arial&amp;#39;,&amp;#39;sans-serif&amp;#39;;FONT-SIZE:10pt;"&gt;Step 1: Define your Target Audience&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span style="LINE-HEIGHT:115%;FONT-FAMILY:&amp;#39;Arial&amp;#39;,&amp;#39;sans-serif&amp;#39;;FONT-SIZE:10pt;"&gt;One effective method to define your target audience is to create Personas.&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;A Persona is a description of a specific person who is a target buyer of a particular set of services.&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;The persona typically includes a fictitious buyer&amp;rsquo;s demographic information, needs, preferences, biographical information, and a photo or illustration. Typically, multiple Personas are developed in the early stages of a Digital Marketing Plan that represent the spectrum of the target audience. &lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;b style="mso-bidi-font-weight:normal;"&gt;&lt;i style="mso-bidi-font-style:normal;"&gt;&lt;span style="LINE-HEIGHT:115%;FONT-FAMILY:&amp;#39;Arial&amp;#39;,&amp;#39;sans-serif&amp;#39;;FONT-SIZE:10pt;"&gt;Step 2: Conduct Competitive Analysis&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span style="LINE-HEIGHT:115%;FONT-FAMILY:&amp;#39;Arial&amp;#39;,&amp;#39;sans-serif&amp;#39;;FONT-SIZE:10pt;"&gt;I typically recommend putting together a spreadsheet of your top competitors and conducting some research to see how they are using digital marketing channels to reach your current and prospective customers.&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;Once you have your spreadsheet created, try impersonating your prospective customer and try to find your (and your competitor&amp;rsquo;s) products or services online.&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;Did you find theirs first, or yours?&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;If you find theirs first, try to uncover what they are doing within the digital channel to make a connection with you online.&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;Document each connection you make with your competitor in the spreadsheet.&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;This competitive analysis will be used as input as you prioritize your digital channels in Step 3 (below).&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;b style="mso-bidi-font-weight:normal;"&gt;&lt;i style="mso-bidi-font-style:normal;"&gt;&lt;span style="LINE-HEIGHT:115%;FONT-FAMILY:&amp;#39;Arial&amp;#39;,&amp;#39;sans-serif&amp;#39;;FONT-SIZE:10pt;"&gt;Step 3: Prioritize Your Digital Channels&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;span style="LINE-HEIGHT:115%;FONT-FAMILY:&amp;#39;Arial&amp;#39;,&amp;#39;sans-serif&amp;#39;;FONT-SIZE:10pt;"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span style="LINE-HEIGHT:115%;FONT-FAMILY:&amp;#39;Arial&amp;#39;,&amp;#39;sans-serif&amp;#39;;FONT-SIZE:10pt;"&gt;Below is a list of the most popular digital channels that exist today.&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;I always recommend force-ranking these according to value and effort.&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;In other words, look at each channel individually and try to determine the value that channel could bring to your organization.&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;Value can be defined in many ways, including: # of new visitors, # of new leads, increase (%) in average deal size, lower cost ($) of sale, etc.&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;Then, independent of the value, look at the effort required to implement your plan across each digital marketing channel.&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;The value-effort score will show you which channels represent &amp;ldquo;quick wins&amp;rdquo;. I always recommend starting with quick wins.&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span style="FONT-FAMILY:Symbol;FONT-SIZE:10pt;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;mso-bidi-language:AR-SA;"&gt;&lt;span style="mso-list:Ignore;"&gt;&amp;middot;&lt;span style="FONT:7pt &amp;#39;Times New Roman&amp;#39;;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-FAMILY:&amp;#39;Arial&amp;#39;,&amp;#39;sans-serif&amp;#39;;FONT-SIZE:10pt;mso-fareast-font-family:&amp;#39;Times New Roman&amp;#39;;mso-bidi-language:AR-SA;"&gt;Blogging &lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span style="FONT-FAMILY:Symbol;FONT-SIZE:10pt;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;mso-bidi-language:AR-SA;"&gt;&lt;span style="mso-list:Ignore;"&gt;&amp;middot;&lt;span style="FONT:7pt &amp;#39;Times New Roman&amp;#39;;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-FAMILY:&amp;#39;Arial&amp;#39;,&amp;#39;sans-serif&amp;#39;;FONT-SIZE:10pt;mso-fareast-font-family:&amp;#39;Times New Roman&amp;#39;;mso-bidi-language:AR-SA;"&gt;Microblogging &lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span style="FONT-FAMILY:Symbol;FONT-SIZE:10pt;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;mso-bidi-language:AR-SA;"&gt;&lt;span style="mso-list:Ignore;"&gt;&amp;middot;&lt;span style="FONT:7pt &amp;#39;Times New Roman&amp;#39;;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-FAMILY:&amp;#39;Arial&amp;#39;,&amp;#39;sans-serif&amp;#39;;FONT-SIZE:10pt;mso-fareast-font-family:&amp;#39;Times New Roman&amp;#39;;mso-bidi-language:AR-SA;"&gt;Search engine optimization &lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span style="FONT-FAMILY:Symbol;FONT-SIZE:10pt;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;mso-bidi-language:AR-SA;"&gt;&lt;span style="mso-list:Ignore;"&gt;&amp;middot;&lt;span style="FONT:7pt &amp;#39;Times New Roman&amp;#39;;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-FAMILY:&amp;#39;Arial&amp;#39;,&amp;#39;sans-serif&amp;#39;;FONT-SIZE:10pt;mso-fareast-font-family:&amp;#39;Times New Roman&amp;#39;;mso-bidi-language:AR-SA;"&gt;Social network participation (Facebook, LinkedIn) &lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span style="FONT-FAMILY:Symbol;FONT-SIZE:10pt;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;mso-bidi-language:AR-SA;"&gt;&lt;span style="mso-list:Ignore;"&gt;&amp;middot;&lt;span style="FONT:7pt &amp;#39;Times New Roman&amp;#39;;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-FAMILY:&amp;#39;Arial&amp;#39;,&amp;#39;sans-serif&amp;#39;;FONT-SIZE:10pt;mso-fareast-font-family:&amp;#39;Times New Roman&amp;#39;;mso-bidi-language:AR-SA;"&gt;Email marketing &lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span style="FONT-FAMILY:Symbol;FONT-SIZE:10pt;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;mso-bidi-language:AR-SA;"&gt;&lt;span style="mso-list:Ignore;"&gt;&amp;middot;&lt;span style="FONT:7pt &amp;#39;Times New Roman&amp;#39;;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-FAMILY:&amp;#39;Arial&amp;#39;,&amp;#39;sans-serif&amp;#39;;FONT-SIZE:10pt;mso-fareast-font-family:&amp;#39;Times New Roman&amp;#39;;mso-bidi-language:AR-SA;"&gt;Social media monitoring &amp;amp; outreach &lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span style="FONT-FAMILY:Symbol;FONT-SIZE:10pt;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;mso-bidi-language:AR-SA;"&gt;&lt;span style="mso-list:Ignore;"&gt;&amp;middot;&lt;span style="FONT:7pt &amp;#39;Times New Roman&amp;#39;;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-FAMILY:&amp;#39;Arial&amp;#39;,&amp;#39;sans-serif&amp;#39;;FONT-SIZE:10pt;mso-fareast-font-family:&amp;#39;Times New Roman&amp;#39;;mso-bidi-language:AR-SA;"&gt;Pay per click &lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span style="FONT-FAMILY:Symbol;FONT-SIZE:10pt;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;mso-bidi-language:AR-SA;"&gt;&lt;span style="mso-list:Ignore;"&gt;&amp;middot;&lt;span style="FONT:7pt &amp;#39;Times New Roman&amp;#39;;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-FAMILY:&amp;#39;Arial&amp;#39;,&amp;#39;sans-serif&amp;#39;;FONT-SIZE:10pt;mso-fareast-font-family:&amp;#39;Times New Roman&amp;#39;;mso-bidi-language:AR-SA;"&gt;Blogger relations &lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span style="FONT-FAMILY:Symbol;FONT-SIZE:10pt;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;mso-bidi-language:AR-SA;"&gt;&lt;span style="mso-list:Ignore;"&gt;&amp;middot;&lt;span style="FONT:7pt &amp;#39;Times New Roman&amp;#39;;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-FAMILY:&amp;#39;Arial&amp;#39;,&amp;#39;sans-serif&amp;#39;;FONT-SIZE:10pt;mso-fareast-font-family:&amp;#39;Times New Roman&amp;#39;;mso-bidi-language:AR-SA;"&gt;Video marketing &lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span style="FONT-FAMILY:Symbol;FONT-SIZE:10pt;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;mso-bidi-language:AR-SA;"&gt;&lt;span style="mso-list:Ignore;"&gt;&amp;middot;&lt;span style="FONT:7pt &amp;#39;Times New Roman&amp;#39;;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-FAMILY:&amp;#39;Arial&amp;#39;,&amp;#39;sans-serif&amp;#39;;FONT-SIZE:10pt;mso-fareast-font-family:&amp;#39;Times New Roman&amp;#39;;mso-bidi-language:AR-SA;"&gt;Social media advertising &lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span style="FONT-FAMILY:Symbol;FONT-SIZE:10pt;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;mso-bidi-language:AR-SA;"&gt;&lt;span style="mso-list:Ignore;"&gt;&amp;middot;&lt;span style="FONT:7pt &amp;#39;Times New Roman&amp;#39;;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-FAMILY:&amp;#39;Arial&amp;#39;,&amp;#39;sans-serif&amp;#39;;FONT-SIZE:10pt;mso-fareast-font-family:&amp;#39;Times New Roman&amp;#39;;mso-bidi-language:AR-SA;"&gt;Online/digital public relations &lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span style="FONT-FAMILY:Symbol;FONT-SIZE:10pt;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;mso-bidi-language:AR-SA;"&gt;&lt;span style="mso-list:Ignore;"&gt;&amp;middot;&lt;span style="FONT:7pt &amp;#39;Times New Roman&amp;#39;;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-FAMILY:&amp;#39;Arial&amp;#39;,&amp;#39;sans-serif&amp;#39;;FONT-SIZE:10pt;mso-fareast-font-family:&amp;#39;Times New Roman&amp;#39;;mso-bidi-language:AR-SA;"&gt;Affiliate marketing &lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span style="FONT-FAMILY:Symbol;FONT-SIZE:10pt;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;mso-bidi-language:AR-SA;"&gt;&lt;span style="mso-list:Ignore;"&gt;&amp;middot;&lt;span style="FONT:7pt &amp;#39;Times New Roman&amp;#39;;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-FAMILY:&amp;#39;Arial&amp;#39;,&amp;#39;sans-serif&amp;#39;;FONT-SIZE:10pt;mso-fareast-font-family:&amp;#39;Times New Roman&amp;#39;;mso-bidi-language:AR-SA;"&gt;Corporate web site &lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span style="FONT-FAMILY:Symbol;FONT-SIZE:10pt;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;mso-bidi-language:AR-SA;"&gt;&lt;span style="mso-list:Ignore;"&gt;&amp;middot;&lt;span style="FONT:7pt &amp;#39;Times New Roman&amp;#39;;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-FAMILY:&amp;#39;Arial&amp;#39;,&amp;#39;sans-serif&amp;#39;;FONT-SIZE:10pt;mso-fareast-font-family:&amp;#39;Times New Roman&amp;#39;;mso-bidi-language:AR-SA;"&gt;Viral marketing &lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span style="FONT-FAMILY:Symbol;FONT-SIZE:10pt;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;mso-bidi-language:AR-SA;"&gt;&lt;span style="mso-list:Ignore;"&gt;&amp;middot;&lt;span style="FONT:7pt &amp;#39;Times New Roman&amp;#39;;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-FAMILY:&amp;#39;Arial&amp;#39;,&amp;#39;sans-serif&amp;#39;;FONT-SIZE:10pt;mso-fareast-font-family:&amp;#39;Times New Roman&amp;#39;;mso-bidi-language:AR-SA;"&gt;Free content (eBooks, white papers) &lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span style="FONT-FAMILY:Symbol;FONT-SIZE:10pt;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;mso-bidi-language:AR-SA;"&gt;&lt;span style="mso-list:Ignore;"&gt;&amp;middot;&lt;span style="FONT:7pt &amp;#39;Times New Roman&amp;#39;;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-FAMILY:&amp;#39;Arial&amp;#39;,&amp;#39;sans-serif&amp;#39;;FONT-SIZE:10pt;mso-fareast-font-family:&amp;#39;Times New Roman&amp;#39;;mso-bidi-language:AR-SA;"&gt;Online communities/forums &lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span style="FONT-FAMILY:Symbol;FONT-SIZE:10pt;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;mso-bidi-language:AR-SA;"&gt;&lt;span style="mso-list:Ignore;"&gt;&amp;middot;&lt;span style="FONT:7pt &amp;#39;Times New Roman&amp;#39;;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-FAMILY:&amp;#39;Arial&amp;#39;,&amp;#39;sans-serif&amp;#39;;FONT-SIZE:10pt;mso-fareast-font-family:&amp;#39;Times New Roman&amp;#39;;mso-bidi-language:AR-SA;"&gt;Branded microsites &lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span style="FONT-FAMILY:Symbol;FONT-SIZE:10pt;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;mso-bidi-language:AR-SA;"&gt;&lt;span style="mso-list:Ignore;"&gt;&amp;middot;&lt;span style="FONT:7pt &amp;#39;Times New Roman&amp;#39;;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-FAMILY:&amp;#39;Arial&amp;#39;,&amp;#39;sans-serif&amp;#39;;FONT-SIZE:10pt;mso-fareast-font-family:&amp;#39;Times New Roman&amp;#39;;mso-bidi-language:AR-SA;"&gt;Webinars &lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span style="FONT-FAMILY:Symbol;FONT-SIZE:10pt;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;mso-bidi-language:AR-SA;"&gt;&lt;span style="mso-list:Ignore;"&gt;&amp;middot;&lt;span style="FONT:7pt &amp;#39;Times New Roman&amp;#39;;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-FAMILY:&amp;#39;Arial&amp;#39;,&amp;#39;sans-serif&amp;#39;;FONT-SIZE:10pt;mso-fareast-font-family:&amp;#39;Times New Roman&amp;#39;;mso-bidi-language:AR-SA;"&gt;Podcasts &lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span style="LINE-HEIGHT:115%;FONT-FAMILY:&amp;#39;Arial&amp;#39;,&amp;#39;sans-serif&amp;#39;;FONT-SIZE:10pt;"&gt;&lt;span style="mso-tab-count:1;"&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&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;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;b style="mso-bidi-font-weight:normal;"&gt;&lt;i style="mso-bidi-font-style:normal;"&gt;&lt;span style="LINE-HEIGHT:115%;FONT-FAMILY:&amp;#39;Arial&amp;#39;,&amp;#39;sans-serif&amp;#39;;FONT-SIZE:10pt;"&gt;Step 4: &lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp;&lt;/span&gt;Define Success Criteria&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span lang="EN" style="LINE-HEIGHT:115%;FONT-FAMILY:&amp;#39;Arial&amp;#39;,&amp;#39;sans-serif&amp;#39;;FONT-SIZE:10pt;mso-ansi-language:EN;"&gt;Make sure that success criteria is quantifiable and measurable.&lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/span&gt;Examples of measurable and quantifiable objectives are increase online sales by 20% from x to y. Reduce cost per acquisition by 5%, increase revenue by 10% and organic search traffic by 20%.&lt;/span&gt;&lt;b style="mso-bidi-font-weight:normal;"&gt;&lt;i style="mso-bidi-font-style:normal;"&gt;&lt;span style="LINE-HEIGHT:115%;FONT-FAMILY:&amp;#39;Arial&amp;#39;,&amp;#39;sans-serif&amp;#39;;FONT-SIZE:10pt;"&gt;&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;b style="mso-bidi-font-weight:normal;"&gt;&lt;i style="mso-bidi-font-style:normal;"&gt;&lt;span style="LINE-HEIGHT:115%;FONT-FAMILY:&amp;#39;Arial&amp;#39;,&amp;#39;sans-serif&amp;#39;;FONT-SIZE:10pt;"&gt;Step 5: Test Your Plan&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span style="LINE-HEIGHT:115%;FONT-FAMILY:&amp;#39;Arial&amp;#39;,&amp;#39;sans-serif&amp;#39;;FONT-SIZE:10pt;"&gt;Today it is very easy to determine whether or not marketing campaigns are successful by tracking your previously defined success criteria. &lt;span style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;For example, you can use A/B tests and see where potential customers are exiting your sites. This is how you will judge how well your digital marketing is performing.&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://www.rightpointconsulting.com/community/aggbug.aspx?PostID=2764" width="1" height="1"&gt;</description><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/Brand/default.aspx">Brand</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/Social+Media/default.aspx">Social Media</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/twitter/default.aspx">twitter</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/digital+marketing/default.aspx">digital marketing</category></item><item><title>Get Ready for HTML5</title><link>http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/2010/01/10/html5.aspx</link><pubDate>Mon, 11 Jan 2010 00:07:00 GMT</pubDate><guid isPermaLink="false">f7450ba4-a08e-465a-831a-f9a15c21b696:2763</guid><dc:creator>dpiening</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.rightpointconsulting.com/community/blogs/viewpoint/rsscomments.aspx?PostID=2763</wfw:commentRss><comments>http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/2010/01/10/html5.aspx#comments</comments><description>&lt;p&gt;HTML5 is the next major revision of HTML (the proposed next standard for HTML 4.01, XHTML 1.0 and DOM Level 2 HTML). HTML5 aims to reduce the need for proprietary plug-in-based rich Internet application (RIA) technologies such as Adobe Flash, Microsoft Silverlight, and Sun JavaFX. HTML5 has been met with excitement by some,
loathing by others and confusion/fear by everyone else. Love it or hate
it, HTML5 will soon define how you build websites.&lt;/p&gt;
&lt;h4&gt;&lt;br /&gt;&lt;/h4&gt;
&lt;h4&gt;APIs&lt;/h4&gt;
&lt;p&gt;HTML5 includes several new APIs that are integrated with some of the new HTML5 elements. Here&amp;rsquo;s the complete list from &lt;a target="_blank" href="http://www.w3.org/TR/html5-diff/#apis"&gt;W3.org&lt;/a&gt;:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;2D drawing API which can be used with the new canvas element.&lt;/li&gt;
&lt;li&gt;API for playing of video and audio which can be used with the new video and audio elements. &lt;/li&gt;
&lt;li&gt;An API that enables offline Web applications.&lt;/li&gt;
&lt;li&gt;An API that allows a Web application to register itself for certain protocols or media types.&lt;/li&gt;
&lt;li&gt;Editing API in combination with a new global contenteditable attribute.&lt;/li&gt;
&lt;li&gt;Drag &amp;amp; drop API in combination with a draggable attribute.&lt;/li&gt;
&lt;li&gt;API that exposes the history and allows pages to add to it to prevent breaking the back button.&lt;/li&gt;
&lt;li&gt;Cross-document messaging.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The principal purpose of these APIs is to facilitate
web application creation. Notice the third API enables offline web
apps. This is excellent news for users and programmers alike because it
enables the use of rich, internet-driven applications in an offline
environment. You can expect to see many of your favorite applications
follow Gmail in introducing offline access.&lt;/p&gt;
&lt;h4&gt;&lt;br /&gt;&lt;/h4&gt;
&lt;h4&gt;New Elements&lt;/h4&gt;
&lt;p&gt;HTML5 introduces several new elements (source: &lt;a target="_blank" href="http://www.w3schools.com/html5/html5_reference.asp"&gt;w3schools&lt;/a&gt;):&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;b&gt;&amp;lt;article&amp;gt;&lt;/b&gt; Defines an article&lt;/li&gt;
&lt;li&gt;&lt;b&gt;&amp;lt;aside&amp;gt;&lt;/b&gt; Defines some content aside from the article it is placed in&lt;/li&gt;
&lt;li&gt;&lt;b&gt;&amp;lt;audio&amp;gt;&lt;/b&gt; Defines sound, such as music or other audio streams&lt;/li&gt;
&lt;li&gt;&lt;b&gt;&amp;lt;canvas&amp;gt;&lt;/b&gt; Defines graphic, such as graphs or other images&lt;/li&gt;
&lt;li&gt;&lt;b&gt;&amp;lt;command&amp;gt;&lt;/b&gt; Defines a command button, like a radiobutton, a checkbox, or a button&lt;/li&gt;
&lt;li&gt;&lt;b&gt;&amp;lt;datalist&amp;gt;&lt;/b&gt; Defines a dropdown list.&lt;/li&gt;
&lt;li&gt;&lt;b&gt;&amp;lt;details&amp;gt;&lt;/b&gt; Defines details of an element, which the user can see, and click to hide&lt;/li&gt;
&lt;li&gt;&lt;b&gt;&amp;lt;dialog&amp;gt;&lt;/b&gt; Defines a dialog, such as a conversation&lt;/li&gt;
&lt;li&gt;&lt;b&gt;&amp;lt;embed&amp;gt;&lt;/b&gt; Defines external interactive content or plugin&lt;/li&gt;
&lt;li&gt;&lt;b&gt;&amp;lt;figure&amp;gt;&lt;/b&gt; Defines a group of media content, and their caption&lt;/li&gt;
&lt;li&gt;&lt;b&gt;&amp;lt;footer&amp;gt;&lt;/b&gt; Defines the footer of a section or document. Typically contains the name of the author, the date the document was written and/or contact information&lt;/li&gt;
&lt;li&gt;&lt;b&gt;&amp;lt;header&amp;gt;&lt;/b&gt; Defines the header of a section or page&lt;/li&gt;
&lt;li&gt;&lt;b&gt;&amp;lt;hgroup&amp;gt;&lt;/b&gt; Defines information about a section in a document&lt;/li&gt;
&lt;li&gt;&lt;b&gt;&amp;lt;keygen&amp;gt;&lt;/b&gt; Defines a generated key in a form&lt;/li&gt;
&lt;li&gt;&lt;b&gt;&amp;lt;mark&amp;gt;&lt;/b&gt; Defines marked text. Use the &amp;lt;mark&amp;gt; tag if you want to highlight parts of your text&lt;/li&gt;
&lt;li&gt;&lt;b&gt;&amp;lt;meter&amp;gt;&lt;/b&gt; Defines measurement within a predefined range&lt;/li&gt;
&lt;li&gt;&lt;b&gt;&amp;lt;nav&amp;gt;&lt;/b&gt; Defines navigation links&lt;/li&gt;
&lt;li&gt;&lt;b&gt;&amp;lt;output&amp;gt;&lt;/b&gt; Defines different types of output, such as output written by a script&lt;/li&gt;
&lt;li&gt;&lt;b&gt;&amp;lt;progress&amp;gt;&lt;/b&gt; Defines progress of a task of any kind. Use the progress element to display the progress of a time consuming function in JavaScript&lt;/li&gt;
&lt;li&gt;&lt;b&gt;&amp;lt;rp&amp;gt;&lt;/b&gt; Used in ruby annotations to define what to show browsers that to not support the ruby element.&lt;/li&gt;
&lt;li&gt;&lt;b&gt;&amp;lt;ruby&amp;gt;&lt;/b&gt; Defines ruby annotations.&lt;/li&gt;
&lt;li&gt;&lt;b&gt;&amp;lt;section&amp;gt;&lt;/b&gt; Defines a section, such as chapters, headers, footers, or any other sections of the document&lt;/li&gt;
&lt;li&gt;&lt;b&gt;&amp;lt;source&amp;gt;&lt;/b&gt; Defines media resources&lt;/li&gt;
&lt;li&gt;&lt;b&gt;&amp;lt;time&amp;gt;&lt;/b&gt; Defines a date/time&lt;/li&gt;
&lt;li&gt;&lt;b&gt;&amp;lt;video&amp;gt;&lt;/b&gt; Defines a video, such as a movie clip or other video streams&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h4&gt;Structural Changes&lt;/h4&gt;
&lt;p&gt;This is the part that should fundamentally change the way you structure
your sites. Included in the list above are six new structural elements
that will help bring consistency to the basic frame of sites all across
the web. These six elements are:&lt;/p&gt;
&lt;p&gt;1. &amp;lt;nav&amp;gt;&lt;br /&gt;2. &amp;lt;section&amp;gt;&lt;br /&gt;3. &amp;lt;article&amp;gt;&lt;br /&gt;4. &amp;lt;header&amp;gt;&lt;br /&gt;5. &amp;lt;footer&amp;gt;&lt;br /&gt;6. &amp;lt;aside&amp;gt;&lt;/p&gt;
&lt;p&gt;Think of these as the replacement for many of the DIVs that you
currently use to structure your site. So instead of &amp;ldquo;&amp;lt;div
class=&amp;rdquo;header&amp;rdquo;&amp;gt;,&amp;rdquo; you will simply have &amp;ldquo;&amp;lt;header&amp;gt;.&amp;rdquo;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h4&gt;What does this mean to you?&lt;br /&gt;&lt;/h4&gt;
&lt;p&gt;As many of you already know, all the major web browsers still
differ (some are worse than others) on
support for HTML4.01 and XHTML 1.0. Now imagine what that means for a
change as big and new as HTML5. Even though some say we will see major changes this year (&lt;a target="_blank" href="http://www.cooltechzone.com/2010/01/07/opera-predicts-2010-the-year-of-html-5/"&gt;Opera Predicts 2010 The Year of HTML 5&lt;/a&gt;) and mega-developers like Google are
pushing along the acceptance of HTML5, it won&amp;rsquo;t be supported across the
board for some time. However, that doesn&amp;rsquo;t mean that you shouldn&amp;rsquo;t
begin preparing for the big switch today, and it certainly doesn&amp;rsquo;t mean
there aren&amp;rsquo;t clever tricks out there to enable you to start playing
with HTML5 now.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://www.rightpointconsulting.com/community/aggbug.aspx?PostID=2763" width="1" height="1"&gt;</description></item><item><title>401 Reasons Why SharePoint Web Services Don't Work Anonymously</title><link>http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/2010/01/07/401-reasons-why-sharepoint-web-services-don-t-work-anonymously.aspx</link><pubDate>Thu, 07 Jan 2010 06:43:00 GMT</pubDate><guid isPermaLink="false">f7450ba4-a08e-465a-831a-f9a15c21b696:2762</guid><dc:creator>Chris Domino</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.rightpointconsulting.com/community/blogs/viewpoint/rsscomments.aspx?PostID=2762</wfw:commentRss><comments>http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/2010/01/07/401-reasons-why-sharepoint-web-services-don-t-work-anonymously.aspx#comments</comments><description>&lt;p class="Text"&gt;&lt;span class="Rant"&gt;&amp;lt;RANT&amp;gt;&lt;/span&gt; &lt;/p&gt;
&lt;p class="Text"&gt;I am always weary of using third party controls in my solutions. I feel that the risk of slightly reinventing the wheel is much less severe than that of getting to the end of project and realizing that some minor requirement that the control in use doesn&amp;#39;t support will become a show stopper. When you don&amp;#39;t have 100% control over your functionality (or the time/budget to customize open source code) then you had better make damn sure your third party components either &lt;span class="Bold"&gt;FIT PERFECTLY&lt;/span&gt; or that your client won&amp;#39;t mind cutting features. &lt;/p&gt;
&lt;p class="Text"&gt;That&amp;#39;s why when I party with SharePoint, it&amp;#39;s always &amp;quot;first party.&amp;quot; Who wants to go to a &lt;span class="Italic"&gt;third&lt;/span&gt; party when the first party is way cooler? &lt;/p&gt;
&lt;p class="Text"&gt;&lt;span class="Rant"&gt;&amp;lt;/RANT&amp;gt;&lt;/span&gt; &lt;/p&gt;
&lt;p class="Text"&gt;That said, I ran into such an issue in my last project. We were using a third party tool that, at the 11th hour (or, more accurately, around 9:45) immediately failed when we were informed that its SharePoint site had to be anonymous. Now our client probably pushed this requirement to the back burner because the functionality of this component had nothing to do with authorization. (I am purposely not going to share which component it is, because, well, I&amp;#39;m not a douche.) &lt;/p&gt;
&lt;p class="Text"&gt;The problem is that OOTB SharePoint web services, at least the ones this web part was calling, do not support anonymous access. The two in question here are SiteData.asmx and List.asmx. However, the depth of this unsupportedness far exceeded my expectations - as you&amp;#39;ll see. &lt;/p&gt;
&lt;p class="Text"&gt;The client first noticed the problem when &amp;quot;random pages&amp;quot; would challenge for credentials exactly twice, which is of course two more times than an anonymous site should challenge anyone. These random pages were of course the ones containing the web part in question. So I fired up &lt;a target="_blank" href="http://fiddler2.com/fiddler2/" class="Link"&gt;Fiddler&lt;/a&gt; and immediately saw the two 401s resulting from calls to the aforementioned web services. &lt;/p&gt;
&lt;p class="Text"&gt;&amp;quot;Easy fix,&amp;quot; I thought as I remoted into the server and fired up IIS. Once there, I navigated to the web site corresponding to the web app in question, expanded it, and set the _vti_bin virtual directory to anonymous, using the app pool identity for impersonation. &lt;/p&gt;
&lt;p class="Text"&gt;And shazzam, no more challenges! &lt;/p&gt;
&lt;p class="Text"&gt;Now the next day, heading to the status meeting, I prepared myself for praise and glory resulting from my victory over yet another third party control&amp;#39;s nonsensical way of doing things. I mean, come on! This is a web part; this is server side code. ALWAYS. Why call the web services? Why not just use the API? If this was our code, I could just fix it, or at least have an arch-to-arch heart-to-heart and inquire as to why this was the chosen method, as there could have been some weird requirement or dependency of doing things that way. &lt;/p&gt;
&lt;p class="Text"&gt;But I&amp;#39;m a consultant. Every project is an edge case in some way. That&amp;#39;s why third party controls fail me so often. &lt;/p&gt;
&lt;p class="Text"&gt;So I sat down at the meeting, and was immediately informed that, despite the lack of challenges, there was still &amp;quot;something wrong&amp;quot; with the web part. It was scarcely noticeable, but still not right. So I went back to Fiddler, and indeed saw that 401s were still being returned. Looking into the raw HTTP, I noticed that only one line of text was being returned: &amp;quot;401 UNAUTHORIZED.&amp;quot; &lt;/p&gt;
&lt;p class="Text"&gt;I then flipped _vti_bin back to Windows auth, and saw the challenges again. Back in Fiddler - and here&amp;#39;s the interesting part - I saw the familiar markup of IE&amp;#39;s default 401 error page! This makes sense; IIS wants windows credentials, IE didn&amp;#39;t give it any, so it returns a 401, and the web service call fails and dies quietly. &lt;/p&gt;
&lt;p class="Text"&gt;But when anonymous is set, we get that one line message: &amp;quot;401 UNAUTHORIZED.&amp;quot; Obviously, this is not coming from IIS. My only guess, after going through the trouble of &lt;a target="_blank" href="http://www.red-gate.com/products/reflector/" class="Link"&gt;Reflecting&lt;/a&gt; what I could of Microsoft.SharePoint.dll, is that code inside the web method sends this response if the current user is not authenticated, regardless if it&amp;#39;s virtual directory is set to be anonymous. Here&amp;#39;s what I dug up in Reflector: &lt;/p&gt;
&lt;p class="Text"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p class="Image"&gt;&lt;img src="http://chrisdomino.com/content/images/401-Reasons-Why-SharePoint-Web-Services-Dont-Work-Anonymously/Reflector.jpg" class="Image" alt="" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p class="Text"&gt;Note: I couldn&amp;#39;t get the actual web service code loaded into Reflector, so I can&amp;#39;t be sure about this assumption. I tried OWSSVR.dll, which lives in the ISAPI folder in the SharePoint hive, but Reflector couldn&amp;#39;t load it since it does not contain a CLI header. &lt;/p&gt;
&lt;p class="Text"&gt;So that&amp;#39;s&amp;nbsp;a dead end: it appears as though the OOTB SharePoint web services explicitly send 401 responses even if their virtual directory is set to be anonymous. This is certainly, IMHO, another knock against using them for anything server side. Maybe that&amp;#39;s why it was so hard to get them to work in InfoPath 2003... &lt;/p&gt;
&lt;p class="Text"&gt;However, SharePoint 2010 is upon us! Next step: see if this is still an issue in the new product. &lt;/p&gt;
&lt;p class="Text"&gt;Stay tuned! &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://www.rightpointconsulting.com/community/aggbug.aspx?PostID=2762" width="1" height="1"&gt;</description><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/SharePoint+2007/default.aspx">SharePoint 2007</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/Anonymous/default.aspx">Anonymous</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/Web+Service/default.aspx">Web Service</category></item><item><title>5 of the 10 Best Intranets in the World Run SharePoint</title><link>http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/2010/01/06/5-of-the-10-best-intranets-in-the-world-run-sharepoint.aspx</link><pubDate>Wed, 06 Jan 2010 22:07:00 GMT</pubDate><guid isPermaLink="false">f7450ba4-a08e-465a-831a-f9a15c21b696:2761</guid><dc:creator>jwillinger</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.rightpointconsulting.com/community/blogs/viewpoint/rsscomments.aspx?PostID=2761</wfw:commentRss><comments>http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/2010/01/06/5-of-the-10-best-intranets-in-the-world-run-sharepoint.aspx#comments</comments><description>&lt;p&gt;Jakob Nielsen, the world&amp;#39;s leading expert on Web usability has listed his best in class intranets.&amp;nbsp; It is no surprise that half of the sites were developed in SharePoint, which i live and breathe daily.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;SharePoint 2010 is the business collaboration platform that enables you to connect and empower people through formal and informal business communities, within the enterprise and beyond, and to manage content throughout the information lifecycle. Whether deployed on-premises or as hosted services, SharePoint&amp;rsquo;s integrated capabilities are enhanced by search technologies&amp;nbsp;and enable you to rapidly respond to changing business needs by making data-driven decisions and by deploying customized solutions quickly and securely. The consolidation of collaboration solutions onto SharePoint 2010 makes it possible to cut costs by lowering training and maintenance expenses and increasing IT productivity, all within a governable and compliant platform. &lt;/p&gt;
&lt;p&gt;10 Best Intranets of 2009 &lt;/p&gt;
&lt;p&gt;Summary:&lt;br /&gt;Intranets are getting more strategic, with increased collaboration support. Team size is growing by 12% per year, and platforms are becoming integrated, with a strong showing for SharePoint. Improving usability increased use by 106% on average. &lt;/p&gt;
&lt;p&gt;The winners of the award for 10 best-designed intranets for 2009 are: &lt;/p&gt;
&lt;p&gt;Altran, a large engineering and innovation consultancy (France)&lt;br /&gt;Advanced Micro Devices (AMD), a developer of computer and graphics processors (USA)&lt;br /&gt;BASF SE, the world&amp;#39;s leading chemical manufacturing company (Germany)&lt;br /&gt;COWI Group A/S, a consulting group focusing on engineering, environmental science, and economics (Denmark)&lt;br /&gt;Deloitte Touche Tohmatsu (DTT), a global professional services network providing audit, tax, consulting, and financial advisory services (a Global member organization)&lt;br /&gt;Environmental Resources Management (ERM), one of the world&amp;#39;s leading providers of environmental consulting services (Global)&lt;br /&gt;HSBC Bank Brazil (Brazil)&lt;br /&gt;Kaupthing Bank (Iceland)&lt;br /&gt;L.L.Bean, a vendor of apparel and outdoor equipment (USA)&lt;br /&gt;McKesson Corporation, a large provider of pharmaceuticals, medical supplies, and health care information technologies (USA) &lt;/p&gt;
&lt;p&gt;Deloitte Touche Tohmatsu also won in 2002 for its Australian member firm&amp;#39;s intranet; this year, DTT&amp;#39;s worldwide intranet is the winner. As such, DTT joins a very small, elite group of companies that has won the award twice: Cisco Systems is the only other member. &lt;/p&gt;
&lt;p&gt;As we&amp;#39;ve seen every year, great intranets are found around the world and in all industries. This year, we have our first winner from Latin America. We also have the first winners from Denmark, France, and Iceland; Germany and the U.S. have both provided many winners in the past. We have one other first this year: In a sign of ongoing globalization trends, we have winners that are not headquartered in any individual country. &lt;/p&gt;
&lt;p&gt;The consulting sector is this year&amp;#39;s best-represented industry, with 3 winners. Given the knowledge-intensive nature of consulting and this year&amp;#39;s trend toward more collaboration-focused intranets, this fact makes sense. &lt;/p&gt;
&lt;p&gt;Bigger Intranet Budgets &lt;/p&gt;
&lt;p&gt;As we&amp;#39;ve seen the last few years, large companies dominate among the winners. Among this year&amp;#39;s winners, the average organization has 37,500 employees. Even so, fairly small companies like Kaupthing Bank with 3,200 employees can still win. Good user experience doesn&amp;#39;t require size or humongous budgets; it requires talent and emphasis on meeting the users&amp;#39; needs. &lt;/p&gt;
&lt;p&gt;One of the strongest trends over the years that we&amp;#39;ve run this design competition is that intranet teams have been getting bigger. As the following chart shows, when we started honoring intranet projects in 2001, the average winning team had 6 members; today, the average team size is 14. &lt;/p&gt;
&lt;p&gt;The long-term trend is toward bigger intranet teams, with a growth rate of 12% per year. &lt;/p&gt;
&lt;p&gt;Still, what holds for company size also holds for the size of teams: You don&amp;#39;t have to be big to win. This year&amp;#39;s winners include one team with 5 members and another team with 6 members. In earlier years, we&amp;#39;ve honored winners with 1- or 2-person teams. &lt;/p&gt;
&lt;p&gt;Even this year&amp;#39;s average team size of 14 is fairly small when it comes to providing a key work tool for organizations with 37,500 employees on average. One way to leverage intranet staff is to call on external resources as appropriate. Today, the predominant approach to running intranet design projects is to engage one or more consultants and external agencies to contribute parts &amp;mdash; and only parts &amp;mdash; of the design, while keeping overall control inside the company itself. &lt;/p&gt;
&lt;p&gt;This year, 6 of the 10 winners were designed by some combination of in-house and outside resources. The remaining 4 projects were done completely by the company&amp;#39;s own staff. None of the winning intranets were designed exclusively by an external agency, even though this was a fairly common approach in earlier years. &lt;/p&gt;
&lt;p&gt;It&amp;#39;s a healthy trend for companies to take more ownership of their intranets and devote resources to building sufficiently large intranet teams. In so doing, they gain in-house expertise in the main areas of intranet user experience. Not all companies can afford intranet teams that are big enough to do everything on their own, however. And, in any case, there are at least three reasons to periodically engage outsiders: &lt;/p&gt;
&lt;p&gt;To get a fresh, independent perspective. People who work on the same project for years can become too accustomed to a certain way of doing things. (Disclaimer: Because Nielsen Norman Group sometimes serves this role through impartial usability reviews or unbiased user testing, we might certainly be too sympathetic to the value of an outside perspective.)&lt;br /&gt;To provide deep expertise or a narrow skill set that the intranet team cannot justify adding to their permanent, full-time headcount.&lt;br /&gt;To alleviate workload during crunch times, particularly during large redesign projects or rollouts. &lt;/p&gt;
&lt;p&gt;Strategic Intranets &lt;/p&gt;
&lt;p&gt;Bigger intranet teams and increasing internal ownership of the intranet user experience both reflect the intranet&amp;#39;s growing strategic role in supporting work processes. &lt;/p&gt;
&lt;p&gt;Intranets today do much more than simply host the company phone book and HR manuals &amp;mdash; though these components remain critically important, and teams are continuing to improve them. COWI, for example, supplemented employee profiles with a feature that highlights commonalities between directory users and the profiled employees they view (an interesting combination of personalization, social networking, and the traditional staff directory.) &lt;/p&gt;
&lt;p&gt;Nonetheless, with bigger teams and budgets and increased respect and strategic recognition, intranet functionality is expanding beyond such basic features. A simple statistic to quantify this trend is the fact that, at 473 pages, this year&amp;#39;s Intranet Design Annual is the most voluminous ever (326% longer than the first Design Annual in 2001, and 31% longer than last year&amp;#39;s report). As intranet teams accomplish more, more space is required to document the winning designs. &lt;/p&gt;
&lt;p&gt;Another indication of the intranet&amp;#39;s growing strategic importance is the fact that ERM is the first winning team that reports directly to the company chairman. As in past years, most other winners report to either Corporate Communications or IT, and having teams report to the top isn&amp;#39;t likely to become commonplace. But this year does show dramatically increased executive visibility for the intranet in many of the winning organizations. This executive involvement typically results from companies viewing the intranet as a collaboration tool and appreciating the increased business efficiency that a good intranet brings. &lt;/p&gt;
&lt;p&gt;Collaboration Features &lt;/p&gt;
&lt;p&gt;This year&amp;#39;s winners showed a substantial increase in both collaboration support and social networking features. Although inspired by the open Internet&amp;#39;s &amp;quot;Web 2.0&amp;quot; sites, these features often have a much stronger business model within the enterprise, simply because they&amp;#39;re more useful and less subject to noise and information pollution by bozos. &lt;/p&gt;
&lt;p&gt;The most symbolic instantiation of this trend might be at Deloitte Touche Tohmatsu, where employees can add their own videos to the corporate TV network. Quite the enterprise YouTube. &lt;/p&gt;
&lt;p&gt;Teams are also adding Facebook-like features to employee directories to enrich the profiles. That said, the designs are for a work environment &amp;mdash; not for commenting on personal photos or supporting teenage dating behaviors. So, while it&amp;#39;s appropriate to be inspired by popular social networking websites, your actual user interface and features must be freshly designed specifically for the intranet. Internal blogs &amp;mdash; whether by employees, department heads, or company leaders &amp;mdash; were also thicker on the ground than in previous years. &lt;/p&gt;
&lt;p&gt;The vast majority of our winning intranets feature CEO blogs. This is not new; we&amp;#39;ve seen some CEO blogs in earlier years. Indeed, HSBC Bank Brazil&amp;#39;s CEO blog started in 2005 and has since been viewed more than 2 million times and accumulated 8,000 employee comments. These statistics imply about 1 comment for every 250 employee viewings of the CEO blog, a level that&amp;#39;s consistent with other research on user participation in online communities. You can use this level as a rough benchmark to assess whether your own CEO blog is sufficiently inviting of employee participation. &lt;/p&gt;
&lt;p&gt;Clearly, it&amp;#39;s a well-established feature. What&amp;#39;s new this year is the sheer prevalence of this communications tool; we now have enough good examples to specify 9 guidelines for an intranet CEO blog. &lt;/p&gt;
&lt;p&gt;Another example of a striking social feature is ERM&amp;#39;s interactive forum. This tool has achieved mission-critical status in allowing consultants to post urgent requests for advice from their colleagues around the world. The forum has virtually eliminated panicky broadcast emails at ERM, thus improving the productivity of the many knowledge workers who are no longer interrupted by requests that they might have no qualifications or experience to solve. Even more important, this community feature often helps the company quickly construct better proposals for key clients on short deadlines. &lt;/p&gt;
&lt;p&gt;Personalization and Customization &lt;/p&gt;
&lt;p&gt;As many of this year&amp;#39;s winners show, intranet personalization is becoming increasingly sophisticated. The leading application of personalization is to provide each employee with news updates focused on their job role and personal interests. If intranets show everyone everything, information overload ensues and people either ignore the news area or squander their time reading irrelevant stories. &lt;/p&gt;
&lt;p&gt;Simple customization can often generate sizeable productivity wins. For example, at McKesson, sales people can create a My Product List and My Favorite Reports, freeing them from having to wade through the much longer lists of all available options. Much appreciated when you&amp;#39;re on the phone with a customer and would prefer to focus your mental resources on closing the sale, rather than navigating the intranet. &lt;/p&gt;
&lt;p&gt;At AMD, users can customize links directly in the main menu bar, which integrates the user&amp;#39;s personal favorites much more tightly with the intranet navigation than the traditionally separate Quick Links feature. &lt;/p&gt;
&lt;p&gt;Multilingual intranets also make good use of personalization to increase usability by presenting pages in the user&amp;#39;s preferred language as much as possible. BASF&amp;#39;s main user interface elements are available in 13 different languages, and several other winners also have internationalization and localization support that goes far beyond what we see in most Internet websites. &lt;/p&gt;
&lt;p&gt;Technology Platform: Unification Begins &lt;/p&gt;
&lt;p&gt;In all previous years, the only conclusion regarding technology was that there was no universal platform for designing good intranets. Winners typically used an extraordinarily wide diversity of implementation packages. &lt;/p&gt;
&lt;p&gt;Although this conclusion continues to hold this year, it is less pronounced. &lt;/p&gt;
&lt;p&gt;Among the winning intranets, many are built on a single intranet platform that integrates most of the supporting features they need &amp;mdash; including a content management system (CMS) and search. Some winners supplement their main platform with a few selected tools for specialized purposes &amp;mdash; mainly Web analytics. If we were to hazard a prediction, it would be that traffic statistics, search log analysis, and other analytics tools will be substantially beefed up and integrated in future releases of the main intranet software platforms. &lt;/p&gt;
&lt;p&gt;In total, the 10 winners were built on 26 different products &amp;mdash; substantially fewer than the 41 used in 2008 or the 49 used in 2007. Most impressively, fully half of the winning intranets used SharePoint, especially the recent MOSS platform (Microsoft Office SharePoint Server 2007). As the following chart shows, SharePoint use has grown dramatically in recent years. This is particularly impressive given that, from 2003&amp;ndash;2006, the winning intranets didn&amp;#39;t use earlier versions of SharePoint at all. &lt;/p&gt;
&lt;p&gt;Microsoft SharePoint has seen substantially increased use among well-designed intranets in recent years.&lt;br /&gt;(In 2007, Microsoft&amp;#39;s own intranet was a winner, and they obviously used their own software, so the 2007 dot should be a notch lower if you consider only third-party projects.) &lt;/p&gt;
&lt;p&gt;Despite this big growth in SharePoint use among the best intranets, the contest is far from over for intranet software platforms. Many other good enterprise software vendors offer widely used solutions. This year, for example, multiple winners used Autonomy, Google Search, and WebTrends. &lt;/p&gt;
&lt;p&gt;Usability Growth &lt;/p&gt;
&lt;p&gt;Over our intranet award&amp;#39;s 9-year history, we&amp;#39;ve seen a steady increase in user-centered design. The following chart shows the proportion of winning intranets that employed various methods across three different 3-year periods. The use of all methods has substantially increased; it&amp;#39;s particularly gratifying to see the extent to which designers are embracing paper prototyping and other low-cost testing methods. &lt;/p&gt;
&lt;p&gt;The percent of winning intranets that employed some of the main usability methods in their design process. &lt;/p&gt;
&lt;p&gt;To assess the ROI of intranet redesigns, teams primarily relied on usage metrics in terms of users, visits, or page views. Across this year&amp;#39;s winners, the average increase in intranet use was 106%. This is about the same as we&amp;#39;ve seen in previous years: The average usage increase in the 2005&amp;ndash;2008 winners was 110%. So, roughly speaking, improving an intranet&amp;#39;s usability will double its use. &lt;/p&gt;
&lt;p&gt;L.L.Bean conducted a benchmark study comparing their old and new designs. The old intranet had a success rate of 67% and an average time-on-task of 1 minute and 52 seconds. The new intranet has a success rate of 88% and users require only 54 seconds on average to perform the same tasks. In other words, users can perform more than twice as many tasks per hour with the new design. This improvement is somewhat more than the average across our intranet usability metrics benchmarks, but then L.L.Bean does have an award-winning intranet. &lt;/p&gt;
&lt;p&gt;I am Director of Business Development and Marketing at Rightpoint, the country&amp;#39;s premier SharePoint knowledge repository with end to end solutions around everything SharePoint.&amp;nbsp; You can reach me at &lt;a href="mailto:jwillinger@rightpoint.com"&gt;&lt;span style="color:#0080c3;"&gt;jwillinger@rightpoint.com&lt;/span&gt;&lt;/a&gt; &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://www.rightpointconsulting.com/community/aggbug.aspx?PostID=2761" width="1" height="1"&gt;</description><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/SharePoint/default.aspx">SharePoint</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/Rightpoint/default.aspx">Rightpoint</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/Web+2.0/default.aspx">Web 2.0</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/Usability/default.aspx">Usability</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/Social+Computing/default.aspx">Social Computing</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/SharePoint+2007/default.aspx">SharePoint 2007</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/Collaboration/default.aspx">Collaboration</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/Portal/default.aspx">Portal</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/Intranet/default.aspx">Intranet</category></item><item><title>I know what the best Business Intelligence tool is!</title><link>http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/2010/01/06/i-know-what-the-best-business-intelligence-tool-is.aspx</link><pubDate>Wed, 06 Jan 2010 20:12:00 GMT</pubDate><guid isPermaLink="false">f7450ba4-a08e-465a-831a-f9a15c21b696:2760</guid><dc:creator>dwaldron</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.rightpointconsulting.com/community/blogs/viewpoint/rsscomments.aspx?PostID=2760</wfw:commentRss><comments>http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/2010/01/06/i-know-what-the-best-business-intelligence-tool-is.aspx#comments</comments><description>&lt;p&gt;&lt;strong&gt;Oh yes, I went there!&lt;/strong&gt;&amp;nbsp; &amp;nbsp;&lt;/p&gt;
&lt;p&gt;But before I answer what the best BI tool is, I&amp;#39;d like to rant about this topic&amp;nbsp;for a moment since many&amp;nbsp;from the Chicago user group, LinkedIn, and Twitter&amp;nbsp;have asked me.&amp;nbsp; Hang with me through the following rumblings...&lt;/p&gt;
&lt;p&gt;I&amp;#39;ve always wanted to drive a Ferrari, but I can&amp;#39;t afford it and where would I find a mechanic since I live in Timbuktu?&amp;nbsp; I&amp;#39;m too tall to drive a Mini Cooper.&amp;nbsp; I have a 1973 Corvette in my garage which has 62K original miles on it, and I&amp;#39;ve only put 500 miles on it in 18 years.&amp;nbsp; I let my neighbor take it to prom 5 years ago and he blew-up the motor (but that is another story).&amp;nbsp; I sure would like to upgrade to a 2010 Z06 Corvette, but where would I put the kids?&amp;nbsp; Trunk, maybe?&amp;nbsp;&amp;nbsp;Plus, I can&amp;nbsp;play weekend mechanic with my 1973 verses having to take any of my other dream cars&amp;nbsp;into the dealership to have it worked on since it would void my warranty.&lt;/p&gt;
&lt;p&gt;Wait, who am I kidding?&amp;nbsp; I&amp;#39;m a true Midwest redneck.&amp;nbsp; I like a big truck, so I drive a 2007 Chevy Avalance.&amp;nbsp; It&amp;#39;s the perfect vehicle for &lt;strong&gt;ME&lt;/strong&gt; and meets &lt;strong&gt;MY&lt;/strong&gt; requirements:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;I can afford the payments and fuel charges&lt;/li&gt;
&lt;li&gt;It&amp;nbsp;can tow&amp;nbsp;my boat, put my motorcycle in the truck bed, and go 4-wheeling&lt;/li&gt;
&lt;li&gt;It seats 5 so&amp;nbsp;I don&amp;#39;t have to strap my kids to&amp;nbsp;a luggage rack&lt;/li&gt;
&lt;li&gt;I can go to Home Depot and bring things home&lt;/li&gt;
&lt;li&gt;I know when the gas needle shows exactly empty&lt;/li&gt;
&lt;li&gt;I sit up high enough that I can look down at people on the highway&lt;/li&gt;
&lt;li&gt;My vehicle is just big enough so that jerk trying to merge into my lane is scared.&lt;/li&gt;
&lt;li&gt;My vehicle has the right amount of door dings so that same jerk trying to merge knows I&amp;#39;m not worried about bumping his car to keep my place...&lt;/li&gt;
&lt;li&gt;My warranty is good until 100,000 miles&lt;/li&gt;
&lt;li&gt;I&amp;#39;m a redneck (redundant) and proud of it.&amp;nbsp; I have a Calvin &amp;amp; Hobbes sticker in my window and you know what he is doing...&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;What was I talking about?&amp;nbsp; Oh yeah (focus, Dennis).&lt;/p&gt;
&lt;p&gt;My requirements + my constraints were equal to or less than&amp;nbsp;my budget.&lt;/p&gt;
&lt;p&gt;The best BI tool is really based upon more than reports.&amp;nbsp; It&amp;#39;s the complete package of formulated requirements.&amp;nbsp; I am the MacGyver of data.&amp;nbsp; I can deliver an analytical cube with data that resides in Excel, SQLServer, DB2, Oracle, and 3 colors of Post-It&amp;#39;s on multiple desks on 3 floors with&amp;nbsp;a match, an empty&amp;nbsp;Starbucks cup, and a paper clip.&amp;nbsp; But most people probably are just looking for the following capabilities:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Operational reporting&lt;/li&gt;
&lt;li&gt;Analytical reporting&lt;/li&gt;
&lt;li&gt;MDM capabilities&lt;/li&gt;
&lt;li&gt;SLA&lt;/li&gt;
&lt;li&gt;The sharpness of my data consumers&lt;/li&gt;
&lt;li&gt;The brilliance of my data architects&lt;/li&gt;
&lt;li&gt;The audacity of my DBA&amp;#39;s.&lt;/li&gt;
&lt;li&gt;The staunchness of my Data Governance Council and stewards&lt;/li&gt;
&lt;li&gt;The celebrity of my dashboard capabilities&lt;/li&gt;
&lt;li&gt;The pocketbooks of my project sponsor&lt;/li&gt;
&lt;li&gt;The outstanding interoperable relationships of all the above technologies and synergies within my organization&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;I have many more, but I&amp;#39;m making a point here.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;So the absolute best BI tool that I just can&amp;#39;t be without it is....&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;It depends...&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://www.rightpointconsulting.com/community/aggbug.aspx?PostID=2760" width="1" height="1"&gt;</description><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/BI/default.aspx">BI</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/Business+Intelligence/default.aspx">Business Intelligence</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/MDM/default.aspx">MDM</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/rant/default.aspx">rant</category><category domain="http://www.rightpointconsulting.com/community/blogs/viewpoint/archive/tags/tool/default.aspx">tool</category></item></channel></rss>