<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>@SPJeff</title>
	
	<link>http://www.spjeff.com</link>
	<description>SharePoint geek, dev, admin – Chicago IL</description>
	<lastBuildDate>Wed, 22 Feb 2012 20:26:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/spjeff" /><feedburner:info uri="spjeff" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>DataSheet – master page background color hides cell text [FIXED]</title>
		<link>http://feedproxy.google.com/~r/spjeff/~3/4m6_qbzkT-U/</link>
		<comments>http://www.spjeff.com/2012/02/22/datasheet-master-page-background-color-hides-cell-text-fixed/#comments</comments>
		<pubDate>Wed, 22 Feb 2012 20:25:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.spjeff.com/?p=672</guid>
		<description><![CDATA[While changing the background color of a master page, I noticed a new issue with DataSheet view.&#160;&#160; DataSheet uses an ActiveX control to render the grid control.&#160; This control uses the &#60;BODY&#62; background color so attempts to set the “#s4-mainarea” &#60;DIV&#62; with a background color were in vain.&#160;&#160; It works for HTML content, but just [...]]]></description>
			<content:encoded><![CDATA[<p>While changing the background color of a master page, I noticed a new issue with DataSheet view.&#160;&#160; DataSheet uses an ActiveX control to render the grid control.&#160; This control uses the &lt;BODY&gt; background color so attempts to set the “#s4-mainarea” &lt;DIV&gt; with a background color were in vain.&#160;&#160; It works for HTML content, but just not for DataSheet.&#160; Using light color (#FFF white in the example below) is more compatible with DataSheet view’s&#160; gray text and gray cell border.&#160; If you have a light &lt;BODY&gt; background color, it may work OK, but those those with dark backgrounds … what can we do?&#160;&#160; There are two options:</p>
<p><strong><font size="4"></font></strong></p>
<p><strong><font size="4"></font></strong></p>
<p><strong><font size="5">Before and After Screenshots</font></strong></p>
<p>Here’s a site with bad colors before the fix:</p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/cd40e354c4b6_B1A0/bad.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="bad" border="0" alt="bad" src="http://www.spjeff.com/wp-content/ftp_uploads/cd40e354c4b6_B1A0/bad_thumb.png" width="512" height="263" /></a></p>
<p>Here’s the same site with smart code to give a different background-color driven by “ShowInGrid” URL:</p>
<p><strong><font size="4"><a href="http://www.spjeff.com/wp-content/ftp_uploads/cd40e354c4b6_B1A0/good.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="good" border="0" alt="good" src="http://www.spjeff.com/wp-content/ftp_uploads/cd40e354c4b6_B1A0/good_thumb.png" width="513" height="259" /></a></font></strong></p>
<p><strong><font size="4"></font></strong></p>
<p><strong><font size="4"></font></strong></p>
<p><strong><font size="5">Option #1 – Server Side &#8211; Master page with C# code</font></strong></p>
<p>A brief snippet of ASP.Net code written in C# can be inserted into the master page.&#160;&#160; The server side rendering will look for a “ShowInGrid” URL parameter.&#160; </p>
<p><strong>Pro</strong></p>
<ul>
<li>Fast </li>
<li>No client browser “blink” that JS has </li>
<li>Foundation for writing other Dot Net server side code&#160; (“smart” master pages) </li>
</ul>
<p><strong>Con </strong></p>
<ul>
<li>Requires [web.config] edit </li>
</ul>
<p><strong>Action Steps</strong></p>
<ol>
<li>Open site with SharePoint Designer </li>
<li>Open Master page with Edit in Advanced Mode </li>
<li>Add the below code just before the &lt;/HEAD&gt; tag </li>
<li>Open INETMGR and locate the website </li>
<li>Open [web.config] from the IIS website folder with Notepad </li>
<li>Add the below &lt;PageParserPath&gt; tag.&#160;&#160; <em>NOTE – be sure to update the site collection relative URL to match your environment.&#160;&#160; Enabling this for all pages (/*) is not generally recommended unless the only people with SP Designer also are trusted developers</em>. </li>
<li>Repeat steps #4 – #6 on each web front end server </li>
</ol>
<p><strong><font size="3"></font></strong></p>
<div class="csharpcode">&#160;</div>
<div class="csharpcode">
<pre class="alt">&lt;% <span class="kwrd">if</span> (Request[<span class="str">&quot;ShowInGrid&quot;</span>] == <span class="kwrd">null</span>) { %&gt;</pre>
<pre>    &lt;style type=<span class="str">&quot;text/css&quot;</span>&gt;</pre>
<pre class="alt">    <span class="rem">/* ShowInGrid - URL parameter not found. black default. */</span></pre>
<pre>    body { background-color: #000; }</pre>
<pre class="alt">    &lt;/style&gt;</pre>
<pre>&lt;% } <span class="kwrd">else</span> { %&gt;</pre>
<pre class="alt">    &lt;style type=<span class="str">&quot;text/css&quot;</span>&gt;</pre>
<pre>    <span class="rem">/* ShowInGrid - URL parameter found. white DataSheet support. */</span>        </pre>
<pre class="alt">    body { background-color: #FFF; }</pre>
<pre>    &lt;/style&gt;</pre>
<pre class="alt">&lt;% } %&gt;    </pre>
</div>
<style type="text/css">
<p>.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
<p><strong><font size="3"><a href="http://www.spjeff.com/wp-content/ftp_uploads/cd40e354c4b6_B1A0/2-22-2012-2-01-59-PM.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="2-22-2012 2-01-59 PM" border="0" alt="2-22-2012 2-01-59 PM" src="http://www.spjeff.com/wp-content/ftp_uploads/cd40e354c4b6_B1A0/2-22-2012-2-01-59-PM_thumb.png" width="613" height="349" /></a></font></strong></p>
<p><strong><font size="3"><a href="http://www.spjeff.com/wp-content/ftp_uploads/cd40e354c4b6_B1A0/2-22-2012-2-03-48-PM.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="2-22-2012 2-03-48 PM" border="0" alt="2-22-2012 2-03-48 PM" src="http://www.spjeff.com/wp-content/ftp_uploads/cd40e354c4b6_B1A0/2-22-2012-2-03-48-PM_thumb.png" width="368" height="251" /></a></font></strong></p>
<div class="csharpcode">
<pre class="alt"><span class="kwrd">&lt;</span><span class="html">PageParserPath</span> <span class="attr">VirtualPath</span><span class="kwrd">=&quot;/_catalogs/*&quot;</span> <span class="attr">CompilationMode</span><span class="kwrd">=&quot;Always&quot;</span> <span class="attr">AllowServerSideScript</span><span class="kwrd">=&quot;true&quot;</span> <span class="attr">IncludeSubFolders</span><span class="kwrd">=&quot;true&quot;</span> <span class="kwrd">/&gt;</span></pre>
</div>
<style type="text/css">
<p>.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
<p><strong><font size="3"><a href="http://www.spjeff.com/wp-content/ftp_uploads/cd40e354c4b6_B1A0/2-22-2012-2-06-43-PM.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="2-22-2012 2-06-43 PM" border="0" alt="2-22-2012 2-06-43 PM" src="http://www.spjeff.com/wp-content/ftp_uploads/cd40e354c4b6_B1A0/2-22-2012-2-06-43-PM_thumb.png" width="644" height="106" /></a></font></strong></p>
<p><strong><font size="4"></font></strong></p>
<p><strong><font size="4"></font></strong></p>
<p><strong><font size="5">Option #2 – Client Side – Master page with JavaScript code</font></strong></p>
<p>A brief snippet of ASP.Net code written in C# can be inserted into the master page.</p>
<p><strong>Pro</strong></p>
<ul>
<li>Does not require any server access </li>
</ul>
<p><strong>Con</strong></p>
<ul>
<li>Slow </li>
<li>Client browser will “blink” when JS changes the color changes from light to dark </li>
</ul>
<p><strong>Action Steps</strong></p>
<ol>
<li>Open site with SharePoint Designer </li>
<li>Open Master page with Edit in Advanced Mode </li>
<li>Add the below code just before the &lt;/BODY&gt; tag </li>
</ol>
<div class="csharpcode">
<pre class="alt">&lt;script type=<span class="str">&quot;text/javascript&quot;</span>&gt;</pre>
<pre>    <span class="rem">//change background color to black, unless DataSheet view</span></pre>
<pre class="alt">    <span class="kwrd">if</span> (document.location.href.indexOf(<span class="str">&quot;ShowInGrid&quot;</span>) == -1) document.body.style.backgroundColor = <span class="str">&quot;#000&quot;</span>;</pre>
<pre>&lt;/script&gt;</pre>
</div>
<style type="text/css">
<p>.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/cd40e354c4b6_B1A0/2-22-2012-2-07-47-PM.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="2-22-2012 2-07-47 PM" border="0" alt="2-22-2012 2-07-47 PM" src="http://www.spjeff.com/wp-content/ftp_uploads/cd40e354c4b6_B1A0/2-22-2012-2-07-47-PM_thumb.png" width="644" height="152" /></a></p>

<!-- This is the start of the WP Twitter Button code -->
<div id="rk_wp_twitter_button" style="margin: 0px 20px 0px 0px; float: left"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.spjeff.com/2012/02/22/datasheet-master-page-background-color-hides-cell-text-fixed/" data-count="vertical" data-via="spjeff"></a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>
<!-- This is the end of the WP Twitter Button code -->

<img src="http://feeds.feedburner.com/~r/spjeff/~4/4m6_qbzkT-U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.spjeff.com/2012/02/22/datasheet-master-page-background-color-hides-cell-text-fixed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.spjeff.com/2012/02/22/datasheet-master-page-background-color-hides-cell-text-fixed/</feedburner:origLink></item>
		<item>
		<title>IIS 7 URL Rewrite to mix anonymous and secure SharePoint content</title>
		<link>http://feedproxy.google.com/~r/spjeff/~3/t3wP3Ars4tM/</link>
		<comments>http://www.spjeff.com/2012/01/25/iis-7-url-rewrite-to-mix-anonymous-and-secure-sharepoint-content/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 04:37:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.spjeff.com/?p=666</guid>
		<description><![CDATA[This is a quick follow up to Chris’ SharePoint blog post http://blogs.visigo.com/chriscoulson/mixed-anonymous-and-secure-content-with-sharepoint-2010/ with an IIS trick learned from Foreignkid at http://blog.foreignkid.net/2011/11/iis-7-url-rewrite-http-redirect-to-root-site/ Summary Blending anonymous and authenticated users on a single site can be challenging.&#160; Enable anonymous read on all site content is generally not appropriate.&#160; Anonymous users should only be granted a bare minimum set [...]]]></description>
			<content:encoded><![CDATA[<p><em>This is a quick follow up to Chris’ SharePoint blog post </em><a title="http://blogs.visigo.com/chriscoulson/mixed-anonymous-and-secure-content-with-sharepoint-2010/" href="http://blogs.visigo.com/chriscoulson/mixed-anonymous-and-secure-content-with-sharepoint-2010/"><em>http://blogs.visigo.com/chriscoulson/mixed-anonymous-and-secure-content-with-sharepoint-2010/</em></a><em> with an IIS trick learned from Foreignkid at </em><a title="http://blog.foreignkid.net/2011/11/iis-7-url-rewrite-http-redirect-to-root-site/" href="http://blog.foreignkid.net/2011/11/iis-7-url-rewrite-http-redirect-to-root-site/"><em>http://blog.foreignkid.net/2011/11/iis-7-url-rewrite-http-redirect-to-root-site/</em></a></p>
<p><strong>Summary</strong></p>
<p>Blending anonymous and authenticated users on a single site can be challenging.&#160; Enable anonymous read on all site content is generally not appropriate.&#160; Anonymous users should only be granted a bare minimum set of permissions.&#160; Enabling read on the “Site Pages” library works well to enable homepage viewing.&#160; However, the challenge with this approach is that anonymous users then cannot “see” the root site (/) in order to be properly redirected with HTTP 302 (/SitePages/Home.aspx) to the homepage.</p>
<p>I recommend leveraging IIS 7 URL Rewrite to handle this direct at the IIS tier before SharePoint sees the HTTP request.&#160;&#160; This way all root site (/) requests are correctly sent to the homepage – for both anonymous and authenticated users.</p>
<p><strong>Action Steps</strong></p>
<ul>
<li>Allow Anonymous on the Web Application</li>
<li>Create root site collection (/)</li>
<li>Enable Welcome homepage</li>
<li>Enable Anonymous Access on “Lists and Libraries” under Site Settings</li>
<li>Grant “View Items” permission on the Site Pages library</li>
<li>Install IIS 7 URL Rewrite .MSI</li>
<li>Create a new rule with Regular Expression (^$) and 302 Redirection (SitePages/Home.aspx)</li>
</ul>
<p><strong>Screenshots</strong></p>
<p>Allow Anonymous on the Web Application   <br /><a href="http://www.spjeff.com/wp-content/ftp_uploads/7c5fb309d1b7_134FB/image.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/7c5fb309d1b7_134FB/image_thumb.png" width="644" height="233" /></a></p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/7c5fb309d1b7_134FB/image_3.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/7c5fb309d1b7_134FB/image_thumb_3.png" width="644" height="198" /></a></p>
<p>Create root site collection (/)   <br /><a href="http://www.spjeff.com/wp-content/ftp_uploads/7c5fb309d1b7_134FB/image_4.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/7c5fb309d1b7_134FB/image_thumb_4.png" width="644" height="218" /></a></p>
<p>Enable Welcome homepage   <br /><a href="http://www.spjeff.com/wp-content/ftp_uploads/7c5fb309d1b7_134FB/image_5.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/7c5fb309d1b7_134FB/image_thumb_5.png" width="644" height="262" /></a></p>
<p>Enable Anonymous Access for “Lists and Libraries” under Site Settings   <br /><a href="http://www.spjeff.com/wp-content/ftp_uploads/7c5fb309d1b7_134FB/image_6.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/7c5fb309d1b7_134FB/image_thumb_6.png" width="644" height="316" /></a></p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/7c5fb309d1b7_134FB/image_7.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/7c5fb309d1b7_134FB/image_thumb_7.png" width="644" height="284" /></a></p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/7c5fb309d1b7_134FB/image_8.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/7c5fb309d1b7_134FB/image_thumb_8.png" width="589" height="484" /></a></p>
<p>Grant “View Items” permission on the Site Pages library   <br /><a href="http://www.spjeff.com/wp-content/ftp_uploads/7c5fb309d1b7_134FB/image_9.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/7c5fb309d1b7_134FB/image_thumb_9.png" width="644" height="325" /></a></p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/7c5fb309d1b7_134FB/image_10.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/7c5fb309d1b7_134FB/image_thumb_10.png" width="644" height="335" /></a></p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/7c5fb309d1b7_134FB/image_11.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/7c5fb309d1b7_134FB/image_thumb_11.png" width="644" height="334" /></a></p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/7c5fb309d1b7_134FB/image_18.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/7c5fb309d1b7_134FB/image_thumb_18.png" width="636" height="484" /></a></p>
<p>Install IIS 7 URL Rewrite .MSI</p>
<p>Download MSI from <a title="http://www.iis.net/download/urlrewrite" href="http://www.iis.net/download/urlrewrite">http://www.iis.net/download/urlrewrite</a> and install on all web front ends (WFE)</p>
<p>Create a new rule with Regular Expression (^$) and 302 Redirection (SitePages/Home.aspx)</p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/7c5fb309d1b7_134FB/image_13.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/7c5fb309d1b7_134FB/image_thumb_13.png" width="421" height="226" /></a></p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/7c5fb309d1b7_134FB/image_14.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/7c5fb309d1b7_134FB/image_thumb_14.png" width="644" height="283" /></a></p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/7c5fb309d1b7_134FB/image_15.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/7c5fb309d1b7_134FB/image_thumb_15.png" width="644" height="292" /></a></p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/7c5fb309d1b7_134FB/image_16.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/7c5fb309d1b7_134FB/image_thumb_16.png" width="644" height="438" /></a></p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/7c5fb309d1b7_134FB/image_17.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/7c5fb309d1b7_134FB/image_thumb_17.png" width="644" height="325" /></a></p>
<p>Hope that helps!</p>

<!-- This is the start of the WP Twitter Button code -->
<div id="rk_wp_twitter_button" style="margin: 0px 20px 0px 0px; float: left"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.spjeff.com/2012/01/25/iis-7-url-rewrite-to-mix-anonymous-and-secure-sharepoint-content/" data-count="vertical" data-via="spjeff"></a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>
<!-- This is the end of the WP Twitter Button code -->

<img src="http://feeds.feedburner.com/~r/spjeff/~4/t3wP3Ars4tM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.spjeff.com/2012/01/25/iis-7-url-rewrite-to-mix-anonymous-and-secure-sharepoint-content/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.spjeff.com/2012/01/25/iis-7-url-rewrite-to-mix-anonymous-and-secure-sharepoint-content/</feedburner:origLink></item>
		<item>
		<title>Business Intelligence – Crossword Puzzle</title>
		<link>http://feedproxy.google.com/~r/spjeff/~3/TFVQDn5wYV4/</link>
		<comments>http://www.spjeff.com/2012/01/24/business-intelligencecrossword-puzzle/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 03:51:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.spjeff.com/?p=659</guid>
		<description><![CDATA[Lately I’ve been a little overwhelmed with long product names in the Microsoft BI stack.&#160; Maybe I’m lazy … but saying “PerformancePoint Services” over and over again just feels like a lot of work.&#160; For simpler conversations please feel free to use the below acronyms.&#160;&#160; I created a Crossword Puzzle for the five people who [...]]]></description>
			<content:encoded><![CDATA[<p>Lately I’ve been a little overwhelmed with long product names in the Microsoft BI stack.&#160; Maybe I’m lazy … but saying “<em>PerformancePoint Services</em>” over and over again just feels like a lot of work.&#160; For simpler conversations please feel free to use the below acronyms.&#160;&#160; I created a <a href="http://www.armoredpenguin.com/crossword/">Crossword Puzzle</a> for the five people who actually read my blog because they have entirely too much free time.&#160; <img style="border-bottom-style: none; border-left-style: none; border-top-style: none; border-right-style: none" class="wlEmoticon wlEmoticon-smile" alt="Smile" src="http://www.spjeff.com/wp-content/ftp_uploads/b32bb4ddc5d1_11C9D/wlEmoticon-smile.png" /></p>
<table border="0" cellspacing="0" cellpadding="2" width="200px">
<tbody>
<tr>
<td valign="top" width="70px"> <a href="http://www.spjeff.com/wp-content/ftp_uploads/b32bb4ddc5d1_11C9D/SPJeff_BI_Crossword_Answers.pdf" target="_blank"> <img border="0" src="/img/filetype_pdf.png" />  </a> </td>
<td valign="top" align="left" width="130px">
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:fb3a1972-4489-4e52-abe7-25a00bb07fdf:52c637fc-416a-4247-99d2-25f4683ab5a3" class="wlWriterEditableSmartContent">
<p> <a href="http://www.spjeff.com/wp-content/ftp_uploads/b32bb4ddc5d1_11C9D/SPJeff_BI_Crossword_Answers.pdf" target="_blank">SPJeff_BI_Crossword_Answers.pdf</a></p>
</div>
</td>
</tr>
</tbody>
</table>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/b32bb4ddc5d1_11C9D/1-23-2012-8-57-20-PM.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="1-23-2012 8-57-20 PM" border="0" alt="1-23-2012 8-57-20 PM" src="http://www.spjeff.com/wp-content/ftp_uploads/b32bb4ddc5d1_11C9D/1-23-2012-8-57-20-PM_thumb.png" width="454" height="620" /></a></p>
<p>&#160;</p>
<table border="0" cellspacing="0" cellpadding="2" width="400">
<tbody>
<tr>
<td bgcolor="#0f0f0f" valign="top" colspan="2" align="center"><strong>BI Acronyms</strong></td>
</tr>
<tr>
<td valign="top" width="69"><strong>BCS</strong></td>
<td valign="top" width="331"><a href="http://technet.microsoft.com/en-us/sharepoint/ee518675">Business Connectivity Services</a></td>
</tr>
<tr>
<td valign="top" width="69"><strong>BI</strong></td>
<td valign="top" width="331"><a href="http://msdn.microsoft.com/en-us/gg618016">Business Intelligence</a></td>
</tr>
<tr>
<td valign="top" width="69"><strong>BIDS</strong></td>
<td valign="top" width="331"><a href="http://msdn.microsoft.com/en-us/library/ms173767.aspx">Business Intelligence Development Studio</a></td>
</tr>
<tr>
<td valign="top" width="69"><strong>DD</strong></td>
<td valign="top" width="331"><a href="http://blogs.technet.com/b/tothesharepoint/archive/2010/10/12/overview-of-performancepoint-dashboard-designer.aspx">Dashboard Designer</a></td>
</tr>
<tr>
<td valign="top" width="69"><strong>DTS</strong></td>
<td valign="top" width="331"><a href="http://technet.microsoft.com/en-us/library/cc917688.aspx">Data Transformation Services</a></td>
</tr>
<tr>
<td valign="top" width="69"><strong>ECT</strong></td>
<td valign="top" width="331"><a href="http://msdn.microsoft.com/en-us/library/ie/ee557243.aspx">External Content Type</a></td>
</tr>
<tr>
<td valign="top" width="69"><strong>PP</strong></td>
<td valign="top" width="331"><a href="http://www.powerpivot.com">PowerPivot</a></td>
</tr>
<tr>
<td valign="top" width="69"><strong>PPS</strong></td>
<td valign="top" width="331"><a href="http://technet.microsoft.com/en-us/library/ee890835.aspx">Performance Point Services</a></td>
</tr>
<tr>
<td valign="top" width="69"><strong>PV</strong></td>
<td valign="top" width="331"><a href="http://www.youtube.com/watch?v=J5fwphWxNoE">PowerView</a></td>
</tr>
<tr>
<td valign="top" width="69"><strong>RB</strong></td>
<td valign="top" width="331"><a href="http://www.databasejournal.com/features/mssql/sql-server-report-builder-3.0.html">Report Builder 3.0</a></td>
</tr>
<tr>
<td valign="top" width="69"><strong>RDL</strong></td>
<td valign="top" width="331"><a href="http://msdn.microsoft.com/en-us/library/ms155062.aspx">Report Definition Language</a></td>
</tr>
<tr>
<td valign="top" width="69"><strong>RDS</strong></td>
<td valign="top" width="331"><a href="http://msdn.microsoft.com/en-us/library/ms159219.aspx">Report Data Source</a></td>
</tr>
<tr>
<td valign="top" width="69"><strong>RSS</strong></td>
<td valign="top" width="331"><a href="http://technet.microsoft.com/en-us/security/bulletin/secrssinfo">Really Simple Syndication</a></td>
</tr>
<tr>
<td valign="top" width="69"><strong>SPD</strong></td>
<td valign="top" width="331"><a href="http://sharepoint.microsoft.com/en-us/product/related-technologies/pages/sharepoint-designer.aspx">SharePoint Designer</a></td>
</tr>
<tr>
<td valign="top" width="69"><strong>SSAS</strong></td>
<td valign="top" width="331"><a href="http://www.microsoft.com/sqlserver/en/us/future-editions/business-intelligence/SQL-Server-2012-analysis-services.aspx">SQL Server Analysis Services</a></td>
</tr>
<tr>
<td valign="top" width="69"><strong>SSIS</strong></td>
<td valign="top" width="331"><a href="http://www.microsoft.com/sqlserver/en/us/solutions-technologies/business-intelligence/integration-services.aspx">SQL Server Integration Services</a></td>
</tr>
<tr>
<td valign="top" width="69"><strong>SSRS</strong></td>
<td valign="top" width="331"><a href="http://www.microsoft.com/sqlserver/en/us/solutions-technologies/business-intelligence/reporting-services.aspx">SQL Server Reporting Services</a></td>
</tr>
<tr>
<td valign="top" width="69"><strong>VS</strong></td>
<td valign="top" width="331"><a href="http://visio.microsoft.com/en-us/pages/default.aspx">Visio Services</a></td>
</tr>
</tbody>
</table>
<p><iframe height="315" src="http://www.youtube.com/embed/J5fwphWxNoE" frameborder="0" width="420" allowfullscreen="allowfullscreen"></iframe></p>

<!-- This is the start of the WP Twitter Button code -->
<div id="rk_wp_twitter_button" style="margin: 0px 20px 0px 0px; float: left"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.spjeff.com/2012/01/24/business-intelligencecrossword-puzzle/" data-count="vertical" data-via="spjeff"></a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>
<!-- This is the end of the WP Twitter Button code -->

<img src="http://feeds.feedburner.com/~r/spjeff/~4/TFVQDn5wYV4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.spjeff.com/2012/01/24/business-intelligencecrossword-puzzle/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.spjeff.com/2012/01/24/business-intelligencecrossword-puzzle/</feedburner:origLink></item>
		<item>
		<title>Error: The install in progress conflicts with a previously installed Microsoft Office 2010 Server product (FIXED)</title>
		<link>http://feedproxy.google.com/~r/spjeff/~3/zKx435EtrpA/</link>
		<comments>http://www.spjeff.com/2011/11/17/error-the-install-in-progress-conflicts-with-a-previously-installed-microsoft-office-2010-server-product-fixed-2/#comments</comments>
		<pubDate>Thu, 17 Nov 2011 19:40:15 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.spjeff.com/?p=578</guid>
		<description><![CDATA[I came across this error when doing a re-install and wanted to post it in case this helps anyone else. The root cause was that I had uninstalled SharePoint Server 2010 without first uninstalling Office Web Applications. Downloaded Windows Installer Clean Up utility (msicuu2.exe) Highlight any rows beginning with “Microsoft Office Web App …” and [...]]]></description>
			<content:encoded><![CDATA[<p>I came across this error when doing a re-install and wanted to post it in case this helps anyone else. The root cause was that I had uninstalled SharePoint Server 2010 without first uninstalling Office Web Applications. </p>
<ul>
<li>Downloaded Windows Installer Clean Up utility (msicuu2.exe) </li>
<li>Highlight any rows beginning with “Microsoft Office Web App …” and click “Remove” </li>
<li>Reboot </li>
<li>Run SharePoint 2010 install again </li>
</ul>
<p>&#160;</p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/Error-The-install-in-progress-conflicts-_BFD7/clip_image001.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="clip_image001" border="0" alt="clip_image001" src="http://www.spjeff.com/wp-content/ftp_uploads/Error-The-install-in-progress-conflicts-_BFD7/clip_image001_thumb.png" width="244" height="199" /></a></p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/Error-The-install-in-progress-conflicts-_BFD7/clip_image002.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="clip_image002" border="0" alt="clip_image002" src="http://www.spjeff.com/wp-content/ftp_uploads/Error-The-install-in-progress-conflicts-_BFD7/clip_image002_thumb.png" width="244" height="242" /></a></p>

<!-- This is the start of the WP Twitter Button code -->
<div id="rk_wp_twitter_button" style="margin: 0px 20px 0px 0px; float: left"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.spjeff.com/2011/11/17/error-the-install-in-progress-conflicts-with-a-previously-installed-microsoft-office-2010-server-product-fixed-2/" data-count="vertical" data-via="spjeff"></a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>
<!-- This is the end of the WP Twitter Button code -->

<img src="http://feeds.feedburner.com/~r/spjeff/~4/zKx435EtrpA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.spjeff.com/2011/11/17/error-the-install-in-progress-conflicts-with-a-previously-installed-microsoft-office-2010-server-product-fixed-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.spjeff.com/2011/11/17/error-the-install-in-progress-conflicts-with-a-previously-installed-microsoft-office-2010-server-product-fixed-2/</feedburner:origLink></item>
		<item>
		<title>Corrupted Install? No Bueno.</title>
		<link>http://feedproxy.google.com/~r/spjeff/~3/M-4CDfvHjCw/</link>
		<comments>http://www.spjeff.com/2011/11/17/corrupted-install-no-bueno-2/#comments</comments>
		<pubDate>Thu, 17 Nov 2011 19:33:12 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.spjeff.com/?p=575</guid>
		<description><![CDATA[I came across this today. If you’re reading this from Google search results, unfortunately I have bad news. You can’t go forward or backward. A few quick attempts on SETUP.EXE proved useless. I did find an article about how to uninstall MOSS 2007, which might be close enough to work. However, in my case it [...]]]></description>
			<content:encoded><![CDATA[<p>I came across this today. If you’re reading this from Google search results, unfortunately I have bad news. You can’t go forward or backward. A few quick attempts on SETUP.EXE proved useless. I did find an article about how to uninstall MOSS 2007, which might be close enough to work. However, in my case it was just easier to delete the VM and get a fresh copy of Windows.&#160; Lesson learned?&#160;&#160;&#160; Never accidentally power off a VM halfway during install.</p>
<p>&#160;</p>
<p><b>Error</b></p>
<ul>
<li>The install in progress conflicts with a previously installed Microsoft Office 2010 Server product. </li>
<li>This product installation has been corrupted. Run setup again from the CD, DVD, or other original installation source. </li>
</ul>
<p><a href="http://blogs.msdn.com/b/dhirajm/archive/2010/06/20/how-to-manually-uninstall-the-microsoft-sharepoint-server-2007.aspx">http://blogs.msdn.com/b/dhirajm/archive/2010/06/20/how-to-manually-uninstall-the-microsoft-sharepoint-server-2007.aspx</a></p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/Corrupted-Install-No-Bueno_BE50/clip_image001.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="clip_image001" border="0" alt="clip_image001" src="http://www.spjeff.com/wp-content/ftp_uploads/Corrupted-Install-No-Bueno_BE50/clip_image001.png" width="244" height="144" /></a></p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/Corrupted-Install-No-Bueno_BE50/clip_image002.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="clip_image002" border="0" alt="clip_image002" src="http://www.spjeff.com/wp-content/ftp_uploads/Corrupted-Install-No-Bueno_BE50/clip_image002.png" width="244" height="130" /></a></p>

<!-- This is the start of the WP Twitter Button code -->
<div id="rk_wp_twitter_button" style="margin: 0px 20px 0px 0px; float: left"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.spjeff.com/2011/11/17/corrupted-install-no-bueno-2/" data-count="vertical" data-via="spjeff"></a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>
<!-- This is the end of the WP Twitter Button code -->

<img src="http://feeds.feedburner.com/~r/spjeff/~4/M-4CDfvHjCw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.spjeff.com/2011/11/17/corrupted-install-no-bueno-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.spjeff.com/2011/11/17/corrupted-install-no-bueno-2/</feedburner:origLink></item>
		<item>
		<title>Tour of Office 365 Professional (many screenshots)</title>
		<link>http://feedproxy.google.com/~r/spjeff/~3/56l5SzmBHWY/</link>
		<comments>http://www.spjeff.com/2011/10/08/tour-of-office-365-professional-many-screenshots/#comments</comments>
		<pubDate>Sat, 08 Oct 2011 23:51:05 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.spjeff.com/?p=562</guid>
		<description><![CDATA[Microsoft put a lot of emphasis behind Office 365 and SharePoint Online during last week’s #SPC11 conference.&#160;&#160; The cloud is definitely here to stay and has many compelling benefits.&#160; We all should take time to get more familiar with the products available.&#160; Earlier this year I signed up for the trial and honestly didn’t take [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft put a lot of emphasis behind Office 365 and SharePoint Online during last week’s #SPC11 conference.&#160;&#160; The cloud is definitely here to stay and has many compelling benefits.&#160; We all should take time to get more familiar with the products available.&#160; Earlier this year I signed up for the trial and honestly didn’t take much time to look around before that expired.&#160;&#160; However, today I purchased a “Professional” license so I can take my time to explore.&#160; <img style="border-bottom-style: none; border-left-style: none; border-top-style: none; border-right-style: none" class="wlEmoticon wlEmoticon-smile" alt="Smile" src="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/wlEmoticon-smile.png" />&#160;&#160; Below are my notes as I toured of the features.</p>
<p>&#160;</p>
<p><strong>Welcome Page</strong></p>
<p>Clean easy to follow layout.&#160; Standard stuff overall, but I like the use of icons and right hand side navigation pane.&#160; Less is more.&#160; Oh, and everything I did was with FireFox!&#160; Full browser compatibility, not even a single hiccup.&#160;&#160; The getting started documentation is concise, yet complete.&#160;&#160; Everything I needed was only a click or two away.&#160; Billing, licenses, and user accounts are all easy to find under the “Admin” tab.</p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image.png"><img style="background-image: none; border-right-width: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_thumb.png" width="244" height="132" /></a></p>
<p>Email is about what you’d expect.&#160; Outlook Web Access 2010 with some 365 branding.</p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_3.png"><img style="background-image: none; border-right-width: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_thumb_3.png" width="244" height="132" /></a></p>
<p>SharePoint Team Site to start with.&#160;&#160; Pretty normal stuff here also.</p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_4.png"><img style="background-image: none; border-right-width: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_thumb_4.png" width="244" height="132" /></a></p>
<p>For the full experience you’ll want to download Lync and other desktop MSI/EXE packages.</p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_5.png"><img style="background-image: none; border-right-width: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_thumb_5.png" width="244" height="132" /></a></p>
<p>Service Health is a nice feature that shows a timeline of each cloud feature and status icon.</p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_6.png"><img style="background-image: none; border-right-width: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_thumb_6.png" width="244" height="132" /></a></p>
<p>&#160;</p>
<p><strong>Microsoft Online Services Sign-in Assistant</strong></p>
<p>You have to first download <a title="http://g.microsoftonline.com/0BX00en-US/427" href="http://g.microsoftonline.com/0BX00en-US/427">http://g.microsoftonline.com/0BX00en-US/427</a> for everything to work locally.&#160;&#160; Full desktop applications (Lync, Access, Word, Excel, etc.) work best when they are integrated to your SharePoint site.&#160;&#160; Generally corporations use Active Directory and this is already done, but with Office 365 we need an extra program to handle login.&#160;&#160; Installation was quick and easy.</p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_7.png"><img style="background-image: none; border-right-width: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_thumb_7.png" width="244" height="192" /></a></p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_8.png"><img style="background-image: none; border-right-width: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_thumb_8.png" width="244" height="192" /></a></p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_9.png"><img style="background-image: none; border-right-width: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_thumb_9.png" width="194" height="244" /></a></p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_10.png"><img style="background-image: none; border-right-width: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_thumb_10.png" width="244" height="169" /></a></p>
<p>&#160;</p>
<p><strong>Access Services</strong></p>
<p>I figured this was only SharePoint Foundation, and was really happy to see the various templates for “web databases” available.&#160;&#160; Integration with Access 2010 locally was smooth and appears fully featured.&#160; The only hiccup was authentication.&#160; </p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_11.png"><img style="background-image: none; border-right-width: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_thumb_11.png" width="244" height="171" /></a></p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_12.png"><img style="background-image: none; border-right-width: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_thumb_12.png" width="244" height="175" /></a></p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_13.png"><img style="background-image: none; border-right-width: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_thumb_13.png" width="244" height="172" /></a></p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_14.png"><img style="background-image: none; border-right-width: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_thumb_14.png" width="244" height="80" /></a></p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_15.png"><img style="background-image: none; border-right-width: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_thumb_15.png" width="244" height="148" /></a></p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_16.png"><img style="background-image: none; border-right-width: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_thumb_16.png" width="244" height="107" /></a></p>
<p>&#160;</p>
<p><strong>Lync 2010</strong></p>
<p>This is pretty cool stuff and worth more than $6/month by itself.&#160;&#160; IM, video, live meetings, and desktop sharing.&#160; </p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_17.png"><img style="background-image: none; border-right-width: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_thumb_17.png" width="128" height="244" /></a></p>
<p>You also have granular control over which features are visible per user.&#160; That could be handy for small businesses with fewer IT staff.</p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_18.png"><img style="background-image: none; border-right-width: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_thumb_18.png" width="229" height="244" /></a></p>
<p>&#160;</p>
<p><strong>Internet Site</strong></p>
<p>This feature I found to be the most interesting and it still seems to be a work in progress.&#160;&#160; These aren’t normal Web Part Pages … nor are they HTML … they’re a new animal.&#160;&#160; “Gadgets” replace web parts, but yet we still have zones.&#160; Overall page editing seems reduced to a few basic toolbar buttons.&#160;&#160; Probably still evolving, but I would guess this was done to reduce support calls (“<em>I broke my page</em>”).</p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_19.png"><img style="background-image: none; border-right-width: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_thumb_19.png" width="244" height="181" /></a></p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_20.png"><img style="background-image: none; border-right-width: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_thumb_20.png" width="244" height="97" /></a></p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_21.png"><img style="background-image: none; border-right-width: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_thumb_21.png" width="244" height="136" /></a></p>
<p>&#160;</p>
<p><strong>Invite More Users</strong></p>
<p>Few sales pitches are more compelling than a referral from a happy customer.&#160;&#160; On several menus you’ll find a convenient place to invite more users to participate on the site.&#160;&#160; That’s great from an ease of use perspective.&#160;&#160; However, I’m not yet clear on how this dovetails into licensing costs.&#160;&#160; You probably have to create user accounts and pay up first … then double back to grant permissions.</p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_22.png"><img style="background-image: none; border-right-width: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_thumb_22.png" width="244" height="154" /></a></p>
<p>&#160;</p>
<p><strong>SharePoint Designer</strong></p>
<p>Yes, SPD is available.&#160; As best I can tell it hasn’t been restricted with the SharePoint web application controls available in 2010.&#160;&#160; That’s good and bad.&#160;&#160; It allows for flexibility, but you have to be careful not to break customized ASPX pages.&#160;&#160; Workflows, permissions, and data connections are all here.</p>
<p>One important thing to notice on the overall tenant architecture is how the root site collection is basically just a placeholder for:</p>
<ul>
<li>Internet Pages (gadgets, about company, etc)</li>
<li>Site Collection Features</li>
<li>Other admin menus</li>
</ul>
<p>Most all of the real content work happens on the /TeamSite/ child web.&#160;&#160; However, if you want to manually type the URL suffix “/_layouts/viewlsts.aspx” and see the all site content for the root you can do that.&#160;&#160; This might be a good trick to know for creating more sibling child webs.&#160;&#160; For example, a local Access database could be published to “/Database” for a cleaner simpler URL.</p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_23.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_thumb_23.png" width="244" height="120" /></a></p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_24.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_thumb_24.png" width="244" height="83" /></a></p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_25.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_thumb_25.png" width="244" height="119" /></a></p>
<p><strong>Office Web Applications</strong></p>
<p>We have Word, Excel, PowerPoint, and OneNote available.&#160;&#160; Just click any icon on the “Home” tab to start a new document.&#160; Easy enough.&#160; Having an Office 365 P1 license doesn’t give me any desktop applications, but still this can be a great way to build a simple document from any PC.&#160;&#160; Just like with on-premise OWA, some of the fun features are only available in the full desktop application.&#160; Excel, for example, could not make a chart in the web browser.&#160;&#160; However, after making a chart with desktop Excel I was able to view it from the browser.</p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_26.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_thumb_26.png" width="244" height="205" /></a></p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_27.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_thumb_27.png" width="244" height="134" /></a></p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_28.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_thumb_28.png" width="244" height="144" /></a></p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_29.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/Tour-of-Office-365-Professional_F3C9/image_thumb_29.png" width="244" height="145" /></a></p>

<!-- This is the start of the WP Twitter Button code -->
<div id="rk_wp_twitter_button" style="margin: 0px 20px 0px 0px; float: left"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.spjeff.com/2011/10/08/tour-of-office-365-professional-many-screenshots/" data-count="vertical" data-via="spjeff"></a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>
<!-- This is the end of the WP Twitter Button code -->

<img src="http://feeds.feedburner.com/~r/spjeff/~4/56l5SzmBHWY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.spjeff.com/2011/10/08/tour-of-office-365-professional-many-screenshots/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.spjeff.com/2011/10/08/tour-of-office-365-professional-many-screenshots/</feedburner:origLink></item>
		<item>
		<title>Windows 8 – first look</title>
		<link>http://feedproxy.google.com/~r/spjeff/~3/RhuZF9juQa0/</link>
		<comments>http://www.spjeff.com/2011/09/27/windows-8-first-look/#comments</comments>
		<pubDate>Tue, 27 Sep 2011 23:39:56 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Windows 8]]></category>

		<guid isPermaLink="false">http://www.spjeff.com/?p=561</guid>
		<description><![CDATA[I finally got around to downloading the ISO.&#160;&#160; Screenshots below.&#160;&#160; I really like the Metro tile interface, but it is a bit jarring when you switch back to the classic display for common functions.&#160; Hopefully this will be smoother before RTM.&#160;&#160; Also, the offering of Hyper-V for virtualization was an exciting feature to see listed.&#160;&#160; [...]]]></description>
			<content:encoded><![CDATA[<p>I finally got around to downloading the ISO.&#160;&#160; Screenshots below.&#160;&#160; I really like the Metro tile interface, but it is a bit jarring when you switch back to the classic display for common functions.&#160; Hopefully this will be smoother before RTM.&#160;&#160; Also, the offering of Hyper-V for virtualization was an exciting feature to see listed.&#160;&#160; That was a big wish list item for many people on Windows 7.&#160; IIS appears to be the same and I would expect SharePoint to run on Win8 no differently that how you can run it on Win7 today.</p>
<ul>
<li><a href="http://www.redmondpie.com/download-windows-8-developer-preview-iso-64-bit-32-bit-now/">Download Windows 8 Developer Preview ISO 64-bit / 32-bit Now!</a> </li>
<li><a href="http://www.techradar.com/news/software/operating-systems/hands-on-windows-8-review-1025259">Hands on: Windows 8 review</a> </li>
</ul>
<p>&#160;</p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/Windows-8--first-look_A44E/9-27-2011-11-08-09-AM.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="9-27-2011 11-08-09 AM" border="0" alt="9-27-2011 11-08-09 AM" src="http://www.spjeff.com/wp-content/ftp_uploads/Windows-8--first-look_A44E/9-27-2011-11-08-09-AM_thumb.png" width="244" height="184" /></a><a href="http://www.spjeff.com/wp-content/ftp_uploads/Windows-8--first-look_A44E/9-27-2011-11-25-39-AM.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="9-27-2011 11-25-39 AM" border="0" alt="9-27-2011 11-25-39 AM" src="http://www.spjeff.com/wp-content/ftp_uploads/Windows-8--first-look_A44E/9-27-2011-11-25-39-AM_thumb.png" width="244" height="183" /></a></p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/Windows-8--first-look_A44E/9-27-2011-11-26-02-AM.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="9-27-2011 11-26-02 AM" border="0" alt="9-27-2011 11-26-02 AM" src="http://www.spjeff.com/wp-content/ftp_uploads/Windows-8--first-look_A44E/9-27-2011-11-26-02-AM_thumb.png" width="244" height="184" /></a><a href="http://www.spjeff.com/wp-content/ftp_uploads/Windows-8--first-look_A44E/9-27-2011-11-31-20-AM.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="9-27-2011 11-31-20 AM" border="0" alt="9-27-2011 11-31-20 AM" src="http://www.spjeff.com/wp-content/ftp_uploads/Windows-8--first-look_A44E/9-27-2011-11-31-20-AM_thumb.png" width="244" height="184" /></a></p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/Windows-8--first-look_A44E/9-27-2011-11-31-50-AM.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="9-27-2011 11-31-50 AM" border="0" alt="9-27-2011 11-31-50 AM" src="http://www.spjeff.com/wp-content/ftp_uploads/Windows-8--first-look_A44E/9-27-2011-11-31-50-AM_thumb.png" width="244" height="183" /></a><a href="http://www.spjeff.com/wp-content/ftp_uploads/Windows-8--first-look_A44E/9-27-2011-11-32-35-AM.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="9-27-2011 11-32-35 AM" border="0" alt="9-27-2011 11-32-35 AM" src="http://www.spjeff.com/wp-content/ftp_uploads/Windows-8--first-look_A44E/9-27-2011-11-32-35-AM_thumb.png" width="244" height="183" /></a></p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/Windows-8--first-look_A44E/9-27-2011-11-34-18-AM.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="9-27-2011 11-34-18 AM" border="0" alt="9-27-2011 11-34-18 AM" src="http://www.spjeff.com/wp-content/ftp_uploads/Windows-8--first-look_A44E/9-27-2011-11-34-18-AM_thumb.png" width="244" height="184" /></a><a href="http://www.spjeff.com/wp-content/ftp_uploads/Windows-8--first-look_A44E/9-27-2011-11-35-42-AM.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="9-27-2011 11-35-42 AM" border="0" alt="9-27-2011 11-35-42 AM" src="http://www.spjeff.com/wp-content/ftp_uploads/Windows-8--first-look_A44E/9-27-2011-11-35-42-AM_thumb.png" width="244" height="184" /></a></p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/Windows-8--first-look_A44E/9-27-2011-11-36-10-AM.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="9-27-2011 11-36-10 AM" border="0" alt="9-27-2011 11-36-10 AM" src="http://www.spjeff.com/wp-content/ftp_uploads/Windows-8--first-look_A44E/9-27-2011-11-36-10-AM_thumb.png" width="244" height="183" /></a><a href="http://www.spjeff.com/wp-content/ftp_uploads/Windows-8--first-look_A44E/9-27-2011-11-36-50-AM.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="9-27-2011 11-36-50 AM" border="0" alt="9-27-2011 11-36-50 AM" src="http://www.spjeff.com/wp-content/ftp_uploads/Windows-8--first-look_A44E/9-27-2011-11-36-50-AM_thumb.png" width="244" height="184" /></a></p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/Windows-8--first-look_A44E/9-27-2011-11-43-34-AM.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="9-27-2011 11-43-34 AM" border="0" alt="9-27-2011 11-43-34 AM" src="http://www.spjeff.com/wp-content/ftp_uploads/Windows-8--first-look_A44E/9-27-2011-11-43-34-AM_thumb.png" width="244" height="184" /></a></p>

<!-- This is the start of the WP Twitter Button code -->
<div id="rk_wp_twitter_button" style="margin: 0px 20px 0px 0px; float: left"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.spjeff.com/2011/09/27/windows-8-first-look/" data-count="vertical" data-via="spjeff"></a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>
<!-- This is the end of the WP Twitter Button code -->

<img src="http://feeds.feedburner.com/~r/spjeff/~4/RhuZF9juQa0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.spjeff.com/2011/09/27/windows-8-first-look/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.spjeff.com/2011/09/27/windows-8-first-look/</feedburner:origLink></item>
		<item>
		<title>Add-SPSolution: Failed to extract the cab file in the solution (FIXED)</title>
		<link>http://feedproxy.google.com/~r/spjeff/~3/OJawSEm96jI/</link>
		<comments>http://www.spjeff.com/2011/08/20/add-spsolution-failed-to-extract-the-cab-file-in-the-solution-fixed/#comments</comments>
		<pubDate>Sat, 20 Aug 2011 13:03:18 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[WSP]]></category>

		<guid isPermaLink="false">http://www.spjeff.com/?p=560</guid>
		<description><![CDATA[Today I saw this error message and was able to fix by renaming the original source files in Visual Studio 2010 to remove special characters.&#160;&#160; After checking on Google it appears that symbols such as ~!@#$%^&#38;* may cause issues.&#160;&#160; Lesson learned: keep file names simple so SharePoint is happy.&#160; Add-SPSolution: Failed to extract the cab [...]]]></description>
			<content:encoded><![CDATA[<p>Today I saw this error message and was able to fix by renaming the original source files in Visual Studio 2010 to remove special characters.&#160;&#160; After checking on Google it appears that symbols such as ~!@#$%^&amp;* may cause issues.&#160;&#160; Lesson learned: keep file names simple so SharePoint is happy.&#160; <img style="border-bottom-style: none; border-left-style: none; border-top-style: none; border-right-style: none" class="wlEmoticon wlEmoticon-smile" alt="Smile" src="http://www.spjeff.com/wp-content/ftp_uploads/40440b52fcd4_82E9/wlEmoticon-smile.png" /></p>
<blockquote><p>Add-SPSolution: Failed to extract the cab file in the solution.</p>
</blockquote>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/40440b52fcd4_82E9/8-3-2011-8-44-21-AM.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="8-3-2011 8-44-21 AM" border="0" alt="8-3-2011 8-44-21 AM" src="http://www.spjeff.com/wp-content/ftp_uploads/40440b52fcd4_82E9/8-3-2011-8-44-21-AM_thumb.png" width="644" height="102" /></a></p>
<p>References</p>
<ul>
<li><a title="http://thorprojects.com/blog/archive/2008/01/21/stsadm-strikes-again-failed-to-extract-the-cab-file-in-the-solution-.aspx" href="http://thorprojects.com/blog/archive/2008/01/21/stsadm-strikes-again-failed-to-extract-the-cab-file-in-the-solution-.aspx">http://thorprojects.com/blog/archive/2008/01/21/stsadm-strikes-again-failed-to-extract-the-cab-file-in-the-solution-.aspx</a></li>
<li><a title="http://darrinbishop.com/blog/2008/08/failedtoextract" href="http://darrinbishop.com/blog/2008/08/failedtoextract">http://darrinbishop.com/blog/2008/08/failedtoextract</a></li>
</ul>

<!-- This is the start of the WP Twitter Button code -->
<div id="rk_wp_twitter_button" style="margin: 0px 20px 0px 0px; float: left"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.spjeff.com/2011/08/20/add-spsolution-failed-to-extract-the-cab-file-in-the-solution-fixed/" data-count="vertical" data-via="spjeff"></a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>
<!-- This is the end of the WP Twitter Button code -->

<img src="http://feeds.feedburner.com/~r/spjeff/~4/OJawSEm96jI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.spjeff.com/2011/08/20/add-spsolution-failed-to-extract-the-cab-file-in-the-solution-fixed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.spjeff.com/2011/08/20/add-spsolution-failed-to-extract-the-cab-file-in-the-solution-fixed/</feedburner:origLink></item>
		<item>
		<title>FIXED – An attempt has been made to use a data extension ‘ADS’ … with Access Services 2010</title>
		<link>http://feedproxy.google.com/~r/spjeff/~3/5xl7wHlHuaY/</link>
		<comments>http://www.spjeff.com/2011/08/15/fixed-an-attempt-has-been-made-to-use-a-data-extension-ads-with-access-services-2010/#comments</comments>
		<pubDate>Tue, 16 Aug 2011 01:46:52 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Access Services 2010]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SSRS]]></category>

		<guid isPermaLink="false">http://www.spjeff.com/?p=556</guid>
		<description><![CDATA[The below error might appear if you are using Access Services 2010 for the first time.&#160; The local Access 2010 publishing wizard will create RDL and RSDS files for reports you have.&#160;&#160; However, the SSRS server side configuration may require a minor update to enable ADS&#160; (Access Data Server).&#160; See http://technet.microsoft.com/en-us/library/ee662542.aspx for full details. The [...]]]></description>
			<content:encoded><![CDATA[<p>The below error might appear if you are using Access Services 2010 for the first time.&#160; The local Access 2010 publishing wizard will create RDL and RSDS files for reports you have.&#160;&#160; However, the SSRS server side configuration may require a minor update to enable ADS&#160; (Access Data Server).&#160; See <a title="http://technet.microsoft.com/en-us/library/ee662542.aspx" href="http://technet.microsoft.com/en-us/library/ee662542.aspx">http://technet.microsoft.com/en-us/library/ee662542.aspx</a> for full details.</p>
<p>The instructions are pretty clear except for where to find the “rssrvpolicy.config” file.&#160; Mine was under C:Program FilesMicrosoft SQL ServerMSRS10_50.MSSQLSERVERReporting ServicesReportServer.&#160;&#160; Hope that helps.&#160; If you’d like to learn Access Service 2010 on your system be sure to check out the Northwind 2010 Web Database at <a title="http://office.microsoft.com/en-us/templates/results.aspx?qu=northwind&amp;ex=1" href="http://office.microsoft.com/en-us/templates/results.aspx?qu=northwind&amp;ex=1">http://office.microsoft.com/en-us/templates/results.aspx?qu=northwind&amp;ex=1</a>&#160;&#160;&#160;&#160; <img style="border-bottom-style: none; border-left-style: none; border-top-style: none; border-right-style: none" class="wlEmoticon wlEmoticon-smile" alt="Smile" src="http://www.spjeff.com/wp-content/ftp_uploads/8808a4e06f42_DEBE/wlEmoticon-smile.png" /></p>
<p>&#160;</p>
<p><strong>Successful Report</strong></p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/8808a4e06f42_DEBE/image.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/8808a4e06f42_DEBE/image_thumb.png" width="644" height="354" /></a></p>
<p><a href="http://office.microsoft.com/en-us/templates/results.aspx?qu=northwind&amp;ex=1"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/8808a4e06f42_DEBE/image_3.png" width="92" height="114" /></a></p>
<p>&#160;</p>
<p>&#160;</p>
<p><strong>Error Detail</strong></p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/8808a4e06f42_DEBE/image_4.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/8808a4e06f42_DEBE/image_thumb_3.png" width="644" height="124" /></a></p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/8808a4e06f42_DEBE/image_5.png"><img style="background-image: none; border-right-width: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/8808a4e06f42_DEBE/image_thumb_4.png" width="644" height="112" /></a></p>
<ul>
<li>An error has occurred during report processing. (rsProcessingAborted)      <br />An attempt has been made to use a data extension &#8216;ADS&#8217; that is either not registered for this report server or is not supported in this edition of Reporting Services. (rsDataExtensionNotFound) </li>
<li>An error has occurred during report processing. (rsProcessingAborted)      <br />The Group expression for the grouping ‘Group1’ contains an error: Request for the permission of type &#8216;Microsoft.Office.Access.Server.Security.AccessServicesPermission, Microsoft.Office.Access.Server.Security, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c&#8217; failed. (rsRuntimeErrorInExpression) </li>
</ul>

<!-- This is the start of the WP Twitter Button code -->
<div id="rk_wp_twitter_button" style="margin: 0px 20px 0px 0px; float: left"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.spjeff.com/2011/08/15/fixed-an-attempt-has-been-made-to-use-a-data-extension-ads-with-access-services-2010/" data-count="vertical" data-via="spjeff"></a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>
<!-- This is the end of the WP Twitter Button code -->

<img src="http://feeds.feedburner.com/~r/spjeff/~4/5xl7wHlHuaY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.spjeff.com/2011/08/15/fixed-an-attempt-has-been-made-to-use-a-data-extension-ads-with-access-services-2010/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.spjeff.com/2011/08/15/fixed-an-attempt-has-been-made-to-use-a-data-extension-ads-with-access-services-2010/</feedburner:origLink></item>
		<item>
		<title>Central Administration – hide the Health Analyzer bar (CSS)</title>
		<link>http://feedproxy.google.com/~r/spjeff/~3/5UTo57FwW-I/</link>
		<comments>http://www.spjeff.com/2011/08/15/central-administration-hide-the-health-analyzer-bar-css/#comments</comments>
		<pubDate>Mon, 15 Aug 2011 19:14:18 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Central Admin]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://www.spjeff.com/?p=553</guid>
		<description><![CDATA[Many SharePoint farms display the below warning.&#160; Unfortunately it tends to get people’s blood pressure up.&#160; While it’s good to know about your farm, some of the underlying conditions may persist or even by expected.&#160; A bright red color on the homepage creates a sense of panic which generally isn’t helpful.&#160;&#160; For my CA homepage [...]]]></description>
			<content:encoded><![CDATA[<p>Many SharePoint farms display the below warning.&#160; Unfortunately it tends to get people’s blood pressure up.&#160; While it’s good to know about your farm, some of the underlying conditions may persist or even by expected.&#160; A bright red color on the homepage creates a sense of panic which generally isn’t helpful.&#160;&#160; For my CA homepage I made a simple CSS addition via Content Editor Web Part to override the background color.</p>
<p>I still see the messages, but they come across less like a blaring three alarm fire and more like a gentle reminder.&#160; <img style="border-bottom-style: none; border-left-style: none; border-top-style: none; border-right-style: none" class="wlEmoticon wlEmoticon-smile" alt="Smile" src="http://www.spjeff.com/wp-content/ftp_uploads/7a698c179c93_B369/wlEmoticon-smile.png" /></p>
<p>&#160;</p>
<blockquote><p><em>The SharePoint Health Analyzer has detected some critical issues that require your attention. View these issues.</em>&#160; </p>
</blockquote>
<p><strong>Before</strong></p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/7a698c179c93_B369/image6.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/7a698c179c93_B369/image6_thumb.png" width="652" height="301" /></a></p>
<p><strong>After</strong></p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/7a698c179c93_B369/image12.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.spjeff.com/wp-content/ftp_uploads/7a698c179c93_B369/image12_thumb.png" width="650" height="305" /></a></p>
<p><strong>CSS Code</strong></p>
<p>Below is the internal code for a Content Editor Web Part to apply more calm color styling.&#160; </p>
<div id="codeSnippetWrapper">
<div style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px" id="codeSnippet">
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum1">   1:</span> <span style="color: #0000ff">&lt;</span><span style="color: #800000">style</span> <span style="color: #ff0000">type</span><span style="color: #0000ff">=&quot;text/css&quot;</span><span style="color: #0000ff">&gt;</span> </pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum2">   2:</span> .s4-status-s4 </pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum3">   3:</span> { </pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum4">   4:</span>     background-attachment:scroll; </pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum5">   5:</span>     background-color:rgb(246, 246, 246); </pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum6">   6:</span>     background-image:url(&quot;/_layouts/images/selbg.png&quot;); </pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum7">   7:</span>     background-position-x:left; </pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum8">   8:</span>     background-position-top:top;    </pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum9">   9:</span>     background-repeat:repeat-x; </pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum10">  10:</span>     border:1px 1px 1px 1px; </pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum11">  11:</span>     border-color:#e0e0e0; </pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum12">  12:</span> } </pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum13">  13:</span> .s4-status-s4 a </pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum14">  14:</span> { </pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum15">  15:</span>     color:inherit; </pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum16">  16:</span> } </pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum17">  17:</span> .s4-status-s4 a:visited </pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum18">  18:</span> { </pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum19">  19:</span>     color:inherit; </pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum20">  20:</span> } </pre>
<p><!--CRLF--></p>
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum21">  21:</span> <span style="color: #0000ff">&lt;/</span><span style="color: #800000">style</span><span style="color: #0000ff">&gt;</span></pre>
<p><!--CRLF--></div>
</div>
<p>&#160;</p>
<p>For the really ambitious admin, you can hide the entire thing with a one liner.</p>
<div id="codeSnippetWrapper">
<div style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px" id="codeSnippet">
<div id="codeSnippetWrapper">
<div style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: #f4f4f4; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px" id="codeSnippet">
<pre style="border-bottom-style: none; text-align: left; padding-bottom: 0px; line-height: 12pt; background-color: white; margin: 0em; border-left-style: none; padding-left: 0px; width: 100%; padding-right: 0px; font-family: &#39;Courier New&#39;, courier, monospace; direction: ltr; border-top-style: none; color: black; border-right-style: none; font-size: 8pt; overflow: visible; padding-top: 0px"><span style="color: #606060" id="lnum1">   1:</span> <span style="color: #0000ff">&lt;</span><span style="color: #800000">style</span> <span style="color: #ff0000">type</span><span style="color: #0000ff">=&quot;text/css&quot;</span><span style="color: #0000ff">&gt;</span>#s4-statusbarcontainer {visibility:hidden;display:none;}<span style="color: #0000ff">&lt;/</span><span style="color: #800000">style</span><span style="color: #0000ff">&gt;</span></pre>
<p><!--CRLF--></div>
</p></div>
<p><!--CRLF--></div>
</div>
<p><strong>Download .DWP Web Part</strong></p>
<p>Then you can easily import to your environment.</p>
<p><a href="http://www.spjeff.com/wp-content/ftp_uploads/7a698c179c93_B369/CSS---hide-Health-Analyzer.dwp"><img border="0" src="http://www.mricons.com/store/png/111433_28333_16_arrow_bottom_download_icon.png" /></a>&#160;&#160;
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:fb3a1972-4489-4e52-abe7-25a00bb07fdf:7c80d51e-7b9b-4158-9ab9-ca5dd29abe93" class="wlWriterEditableSmartContent">
<p> <a href="http://www.spjeff.com/wp-content/ftp_uploads/7a698c179c93_B369/CSS---hide-Health-Analyzer.dwp" target="_blank">CSS &#8211; hide Health Analyzer.dwp</a></p>
</div>

<!-- This is the start of the WP Twitter Button code -->
<div id="rk_wp_twitter_button" style="margin: 0px 20px 0px 0px; float: left"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.spjeff.com/2011/08/15/central-administration-hide-the-health-analyzer-bar-css/" data-count="vertical" data-via="spjeff"></a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>
<!-- This is the end of the WP Twitter Button code -->

<img src="http://feeds.feedburner.com/~r/spjeff/~4/5UTo57FwW-I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.spjeff.com/2011/08/15/central-administration-hide-the-health-analyzer-bar-css/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.spjeff.com/2011/08/15/central-administration-hide-the-health-analyzer-bar-css/</feedburner:origLink></item>
	</channel>
</rss>

