<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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/"
	>

<channel>
	<title>Kraft Kennedy &#124; Technology Blog &#187; Michael Fettner</title>
	<atom:link href="http://blogs.kraftkennedy.com/index.php/author/fettner/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.kraftkennedy.com</link>
	<description>Trends and insight into legal technology, infrastructure and strategic thinking.</description>
	<lastBuildDate>Wed, 14 Jul 2010 20:44:53 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Auto Launching a Published Desktop from the Citrix Web Interface</title>
		<link>http://blogs.kraftkennedy.com/index.php/2010/07/01/auto-launching-a-published-desktop-from-the-citrix-web-interface/</link>
		<comments>http://blogs.kraftkennedy.com/index.php/2010/07/01/auto-launching-a-published-desktop-from-the-citrix-web-interface/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 16:16:22 +0000</pubDate>
		<dc:creator>Michael Fettner</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Citrix]]></category>
		<category><![CDATA[Citrix Web Interface]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://blogs.kraftkennedy.com/?p=1350</guid>
		<description><![CDATA[The Citrix Web Interface allows you to publish desktop applications as links on a web page.  If only one link is published, such as a &#8220;Windows 7 Desktop&#8221; link, then users will have to come into the web interface and manually click on the link to launch it.  It&#8217;s easy however, to update the code [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblogs.kraftkennedy.com%2Findex.php%2F2010%2F07%2F01%2Fauto-launching-a-published-desktop-from-the-citrix-web-interface%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblogs.kraftkennedy.com%2Findex.php%2F2010%2F07%2F01%2Fauto-launching-a-published-desktop-from-the-citrix-web-interface%2F" height="61" width="51" /></a></div><p>The Citrix Web Interface allows you to publish desktop applications as links on a web page.  If only one link is published, such as a &#8220;Windows 7 Desktop&#8221; link, then users will have to come into the web interface and manually click on the link to launch it.  It&#8217;s easy however, to update the code on the home page so that the published desktop automatically launches when the user opens the web interface.  This shortcut saves users a click and some time, and makes the process more streamlined, especially if there is only one published application.</p>
<p><span id="more-1350"></span></p>
<p>To make this change, just log onto the Citrix server and open the following file:</p>
<p>C:\inetpub\wwwroot\Citrix\XenApp\site\default.aspx</p>
<p>That file is the home page of the Citrix web interface.  Add a script such as the following to the bottom of the page:</p>
<div dir="ltr"><span style="color: #ff0000">&lt;script language=&#8221;javascript&#8221;&gt;<br />
document.getElementById(&#8217;&lt;LINK NAME&gt;&#8217;).onclick();</span></div>
<div dir="ltr"><span style="color: #ff0000">&lt;/script&gt;</span></div>
<div dir="ltr"></div>
<div dir="ltr">Note, that you will have to look through the page source to find the name of the link to place in the above code.  All of the links also have the same class name, so it&#8217;s possible to write a custom javascript to loop through all of the elements with that class name and select only the appropriate one.  You could also loop through the class elements to see how many links are present, and select the first one if there&#8217;s one link, or do nothing if there&#8217;s more than one link.  There&#8217;s many possibilities for how you can code the javascript to meet your business need.</div>
<div dir="ltr"></div>
]]></content:encoded>
			<wfw:commentRss>http://blogs.kraftkennedy.com/index.php/2010/07/01/auto-launching-a-published-desktop-from-the-citrix-web-interface/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Outlook Meeting Reminders In Focus, Over Other Applications</title>
		<link>http://blogs.kraftkennedy.com/index.php/2010/06/07/getting-outlook-meeting-reminders-in-focus-over-other-applications/</link>
		<comments>http://blogs.kraftkennedy.com/index.php/2010/06/07/getting-outlook-meeting-reminders-in-focus-over-other-applications/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 14:28:05 +0000</pubDate>
		<dc:creator>Michael Fettner</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Focus]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Outlook Add-in]]></category>
		<category><![CDATA[Reminders]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://blogs.kraftkennedy.com/?p=1307</guid>
		<description><![CDATA[The Problem – Hidden Outlook Reminders
In Outlook 2003, 2007, and 2010, reminder windows pop up in Outlook, but they do not steal the focus if you are working in another program.  For example, if you currently working in Word or Internet Explorer, you won’t see a reminder window if one pops up, since you’re not [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblogs.kraftkennedy.com%2Findex.php%2F2010%2F06%2F07%2Fgetting-outlook-meeting-reminders-in-focus-over-other-applications%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblogs.kraftkennedy.com%2Findex.php%2F2010%2F06%2F07%2Fgetting-outlook-meeting-reminders-in-focus-over-other-applications%2F" height="61" width="51" /></a></div><h3>The Problem – Hidden Outlook Reminders</h3>
<p>In Outlook 2003, 2007, and 2010, reminder windows pop up in Outlook, but they do not steal the focus if you are working in another program.  For example, if you currently working in Word or Internet Explorer, you won’t see a reminder window if one pops up, since you’re not in Outlook.</p>
<p>In previous versions of Windows, this wasn’t as big of a deal because you would still see the reminder window in the task bar.  So even though you didn’t see the actual window, you would see the tab for it flashing on the taskbar.</p>
<p>In Windows 7 however, the default grouping of same-application windows, makes is much harder to see when a reminder window pops up.  For example, the image below shows a second Outlook window, which is actually a reminder window.</p>
<p><img src="http://blogs.kraftkennedy.com/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /><span id="more-1307"></span></p>
<p><img src="http://blogs.kraftkennedy.com/wp-content/uploads/2010/06/Capture1.JPG" alt="Capture1" width="74" height="60" /></p>
<p>As a result, Windows 7 users may find that they’re more likely to miss reminders and meetings.</p>
<h3>The Solution – An Outlook Addin to Bring Reminders to Focus</h3>
<p>Kraft Kennedy has created an Outlook addin which responds to the “reminder” event in Outlook, and uses Windows API functions to locate the reminder window and force it into the foreground.</p>
<p>With this addin installed, users would see the reminder window pop up in front of whatever application they are working in, and it will stay in the foreground until the reminder is dismissed or snoozed.</p>
<p>People who may have missed reminders before should now find that it is no longer an issue.</p>
<p>The image below shows a reminder in the foreground, over an Internet Explorer session.</p>
<p>We&#8217;re giving this addin away for free to anyone that is interested, but with no support.  If you&#8217;re interested in using it, please contact Michael Worth at  (212) 692-5610 or <a href="mailto:worth@kraftkennedy.com">worth@kraftkennedy.com</a>.</p>
<h1><img src="http://blogs.kraftkennedy.com/wp-content/uploads/2010/06/Capture21.JPG" alt="Capture2" width="523" height="413" /></h1>
]]></content:encoded>
			<wfw:commentRss>http://blogs.kraftkennedy.com/index.php/2010/06/07/getting-outlook-meeting-reminders-in-focus-over-other-applications/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Fixing SharePoint 2010 Menus on Pages with Flash</title>
		<link>http://blogs.kraftkennedy.com/index.php/2010/05/21/fixing-sharepoint-2010-menus-on-pages-with-flash/</link>
		<comments>http://blogs.kraftkennedy.com/index.php/2010/05/21/fixing-sharepoint-2010-menus-on-pages-with-flash/#comments</comments>
		<pubDate>Fri, 21 May 2010 19:14:31 +0000</pubDate>
		<dc:creator>Michael Fettner</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Enterprise Content Management]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://blogs.kraftkennedy.com/?p=1255</guid>
		<description><![CDATA[In SharePoint 2007, menus in some master pages opened behind page content and Flash animations.  However, there was an easy fix which was to just locate the css style for the dynamic menus, and change the &#8220;z-index&#8221; property to a high number.  This same fix does not work in 2010 however, and to make matters worse, [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblogs.kraftkennedy.com%2Findex.php%2F2010%2F05%2F21%2Ffixing-sharepoint-2010-menus-on-pages-with-flash%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblogs.kraftkennedy.com%2Findex.php%2F2010%2F05%2F21%2Ffixing-sharepoint-2010-menus-on-pages-with-flash%2F" height="61" width="51" /></a></div><p>In SharePoint 2007, menus in some master pages opened behind page content and Flash animations.  However, there was an easy fix which was to just locate the css style for the dynamic menus, and change the &#8220;z-index&#8221; property to a high number.  This same fix does not work in 2010 however, and to make matters worse, the menus on the default master page in 2010 always open behind Flash videos.  (The built-in Silverlight web part in 2010 does not have this problem, but I suspect there are still many people who will have home pages with Flash content.)<span id="more-1255"></span></p>
<p>Here&#8217;s an example of how the menus open by default, behind the Flash content.</p>
<p> <img class="alignnone size-full wp-image-1257" src="http://blogs.kraftkennedy.com/wp-content/uploads/2010/05/Capture3.JPG" alt="Capture3" width="230" height="317" /></p>
<p>After much digging around, I was able to find a way to correctly display the menus in front of Flash content.  You have to add the following parameters to your actual object html code for the Flash object, to make it transparent.</p>
<p><span style="color: #ff0000">Add the following parameter to the OBJECT tag:</span><br/></p>
<p><span style="color: #ff0000">   &lt;param name=&#8221;wmode&#8221; value=&#8221;transparent&#8221;&gt;</span></p>
<p><span style="color: #ff0000">Add the following parameter to the EMBED tag: </span><br/></p>
<p><span style="color: #ff0000">   wmode=&#8221;transparent&#8221;</span></p>
<p><br/><br />
After that the page menus should load correctly, as shown below.<br />
<br/><br />
<img class="alignnone size-full wp-image-1258" src="http://blogs.kraftkennedy.com/wp-content/uploads/2010/05/Capture2.JPG" alt="Capture2" width="231" height="286" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.kraftkennedy.com/index.php/2010/05/21/fixing-sharepoint-2010-menus-on-pages-with-flash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Working with Master Pages in SharePoint 2010</title>
		<link>http://blogs.kraftkennedy.com/index.php/2010/05/21/working-with-master-pages-in-sharepoint-2010/</link>
		<comments>http://blogs.kraftkennedy.com/index.php/2010/05/21/working-with-master-pages-in-sharepoint-2010/#comments</comments>
		<pubDate>Fri, 21 May 2010 19:00:58 +0000</pubDate>
		<dc:creator>Michael Fettner</dc:creator>
				<category><![CDATA[Enterprise Content Management]]></category>
		<category><![CDATA[Master Page]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://blogs.kraftkennedy.com/?p=1261</guid>
		<description><![CDATA[When upgrading from SharePoint 2007 to 2010, you&#8217;ll need to upgrade your master pages (if they&#8217;re customized) to take advantage of the new features in 2010, such as the ribbon.  The first question is to decide if you want to keep the current master page and add all the new controls in, or to start [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblogs.kraftkennedy.com%2Findex.php%2F2010%2F05%2F21%2Fworking-with-master-pages-in-sharepoint-2010%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblogs.kraftkennedy.com%2Findex.php%2F2010%2F05%2F21%2Fworking-with-master-pages-in-sharepoint-2010%2F" height="61" width="51" /></a></div><p>When upgrading from SharePoint 2007 to 2010, you&#8217;ll need to upgrade your master pages (if they&#8217;re customized) to take advantage of the new features in 2010, such as the ribbon.  The first question is to decide if you want to keep the current master page and add all the new controls in, or to start with a new 2010 master page and customize that.  We decided to start with a new master page based on the 2010 master page, v4.master, and customize that.  Here&#8217;s some resources I found useful when creating the new custom master page for our site.<span id="more-1261"></span></p>
<p>If you choose to keep the 2007 master page and add the new controls into it, this post lists all of the steps:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ee539981(office.14).aspx">http://msdn.microsoft.com/en-us/library/ee539981(office.14).aspx</a></p>
<p>If you plan to start with a new 2010 master page, a starter minimal master page can be found here:</p>
<p><a href="http://startermasterpages.codeplex.com/">http://startermasterpages.codeplex.com/</a></p>
<p>I also found the following pages invaluable.  This blog post lists all of the base css classes in the SharePoint master page.</p>
<p><a href="http://erikswenson.blogspot.com/2010/01/sharepoint-2010-base-css-classes.html">http://erikswenson.blogspot.com/2010/01/sharepoint-2010-base-css-classes.html</a></p>
<p>This blog lists the styles you&#8217;ll need to modify to change the look and feel of the menus:</p>
<p><a href="http://blog.drisgill.com/2009/11/sp2010-branding-tip-7-using-simple.html">http://blog.drisgill.com/2009/11/sp2010-branding-tip-7-using-simple.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.kraftkennedy.com/index.php/2010/05/21/working-with-master-pages-in-sharepoint-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Outlook private items &#8211; Not as private as you might think</title>
		<link>http://blogs.kraftkennedy.com/index.php/2010/05/03/outlook-private-items-not-as-private-as-you-might-think/</link>
		<comments>http://blogs.kraftkennedy.com/index.php/2010/05/03/outlook-private-items-not-as-private-as-you-might-think/#comments</comments>
		<pubDate>Mon, 03 May 2010 19:04:35 +0000</pubDate>
		<dc:creator>Michael Fettner</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Enterprise Content Management]]></category>
		<category><![CDATA[Infrastructure]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Exchange Web Services]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[OWA]]></category>
		<category><![CDATA[Private]]></category>
		<category><![CDATA[Sensitivity]]></category>
		<category><![CDATA[WebDAV]]></category>

		<guid isPermaLink="false">http://blogs.kraftkennedy.com/?p=1185</guid>
		<description><![CDATA[A common situation in organizations is to make calendars public, so that employees can see other employee&#8217;s availability, and collaborate better.  Users may also delegate rights to other users to view their messages, tasks, and contacts.  In these situations, people may rely on marking sensitive items private to hide them from other users.  In Outlook or OWA, [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblogs.kraftkennedy.com%2Findex.php%2F2010%2F05%2F03%2Foutlook-private-items-not-as-private-as-you-might-think%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblogs.kraftkennedy.com%2Findex.php%2F2010%2F05%2F03%2Foutlook-private-items-not-as-private-as-you-might-think%2F" height="61" width="51" /></a></div><p>A common situation in organizations is to make calendars public, so that employees can see other employee&#8217;s availability, and collaborate better.  Users may also delegate rights to other users to view their messages, tasks, and contacts.  In these situations, people may rely on marking sensitive items private to hide them from other users.  In Outlook or OWA, other users will see a placeholder for the private items, but won&#8217;t be able to view any of the details.  However, you should keep in mind that this privacy is only a feature of the client application&#8211;Outlook or OWA&#8211;and is not inherent to Exchange.  Exchange itself does not support any kind of item-level security or privacy, and only has a field called &#8220;sensitivity&#8221; which is used by Outlook and OWA.  The client applications look at that field to determine whether to display the item.<span id="more-1185"></span></p>
<p>This architecture is common to all versions of Outlook and Exchange, through 2010, and is not really a bug, so much as an architectural decision by Microsoft to keep item-level permissions in the client-tier.  The end result is that people should realize that just because they mark an appointment or other item private in Outlook, it doesn&#8217;t mean that no one else will be able to see it.  Items that are extrememly sensitive should probably not be stored in Exchange in the first place, or you should take off all delegate / view rights to your mailbox.  People who you give delegate rights to should also be people who you trust.</p>
<p>Developers should note that when writing custom applications with WebDAV, Exchange Web Services, or any other method, all items will be returned including private items.  The custom application should look at the sensitivity setting of each message before displaying it.  If the sensitivity is private, then the mesage should not be displayed.  We, at Kraft Kennedy, have run into this issue several times when creating custom applications with WebDAV that pull back appointments from the Exchange calendar.</p>
<p>Microsoft has details about allowing other users to manage your mail and calendar here: </p>
<p><a href="http://office.microsoft.com/en-us/outlook/HA100750811033.aspx?pid=CH100788801033">http://office.microsoft.com/en-us/outlook/HA100750811033.aspx?pid=CH100788801033</a></p>
<p>Note, the last paragraph of the article:</p>
<address><strong><span style="text-decoration: underline">Important</span></strong>   You should not rely on the Private feature to prevent other people from accessing the details of your appointments, contacts, or tasks. To make sure that other people cannot read the items that you marked as private, do not grant them Reviewer (can read items) permission to your Calendar, Contacts, or Tasks folder. A person who is granted Reviewer (can read items) permission to access your folders could use programmatic methods or other e-mail programs to view the details of a private item. Use the Private feature only when you share folders with people whom you trust.</address>
]]></content:encoded>
			<wfw:commentRss>http://blogs.kraftkennedy.com/index.php/2010/05/03/outlook-private-items-not-as-private-as-you-might-think/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Removing the left-hand navigation in SharePoint 2010</title>
		<link>http://blogs.kraftkennedy.com/index.php/2010/04/21/removing-the-left-hand-navigation-in-sharepoint-2010/</link>
		<comments>http://blogs.kraftkennedy.com/index.php/2010/04/21/removing-the-left-hand-navigation-in-sharepoint-2010/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 20:47:02 +0000</pubDate>
		<dc:creator>Michael Fettner</dc:creator>
				<category><![CDATA[Enterprise Content Management]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[quick launch]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://blogs.kraftkennedy.com/?p=1138</guid>
		<description><![CDATA[When designing the layout and branding for new SharePoint 2010 sites, some people may wish to hide the left-hand navigation and only use top navigation.  Hiding the left-hand navigation allows for more space for content and a possible cleaner looking interface.  In SharePoint&#8217;s Site Settings, you can turn off the quick launch and tree view, [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblogs.kraftkennedy.com%2Findex.php%2F2010%2F04%2F21%2Fremoving-the-left-hand-navigation-in-sharepoint-2010%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblogs.kraftkennedy.com%2Findex.php%2F2010%2F04%2F21%2Fremoving-the-left-hand-navigation-in-sharepoint-2010%2F" height="61" width="51" /></a></div><p>When designing the layout and branding for new SharePoint 2010 sites, some people may wish to hide the left-hand navigation and only use top navigation.  Hiding the left-hand navigation allows for more space for content and a possible cleaner looking interface.  In SharePoint&#8217;s Site Settings, you can turn off the quick launch and tree view, however that still leaves the navigation bar on the page with only a recycling bin.  In order to entirely remove the bar, you would need to either modify the master page or CSS linked to the master page.<span id="more-1138"></span></p>
<p>In SharePoint 2010, this can be done pretty easily in the CSS file by modifying the following two styles.</p>
<pre>#s4-leftpanel
{
 display:none;
}</pre>
<p>That style controls the left navigation panel, and setting the display to none effectively hides the entire section.  Hiding this section is not enough though, since the body area uses a left margin to specify where to start the body section.  So you would also need to modify the following style, to tell the body area to start at 5 pixels from the left, or wherever you want to start the main area.</p>
<pre>.s4-ca
{
 margin-left: 5px;
 background: transparent;
}</pre>
]]></content:encoded>
			<wfw:commentRss>http://blogs.kraftkennedy.com/index.php/2010/04/21/removing-the-left-hand-navigation-in-sharepoint-2010/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SharePoint 2010 / SQL Express Size Limits</title>
		<link>http://blogs.kraftkennedy.com/index.php/2010/03/23/sharepoint-2010-sql-express-size-limits/</link>
		<comments>http://blogs.kraftkennedy.com/index.php/2010/03/23/sharepoint-2010-sql-express-size-limits/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 14:01:28 +0000</pubDate>
		<dc:creator>Michael Fettner</dc:creator>
				<category><![CDATA[Enterprise Content Management]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SQL Express]]></category>

		<guid isPermaLink="false">http://blogs.kraftkennedy.com/?p=1100</guid>
		<description><![CDATA[The single-server out of the box SharePoint 2010 installation uses SQL Express, which comes with a 4 GB limit.  This is in contrast to SharePoint 2007 which used the Windows Internal Database, a version of SQL Express with no size limit.  If you&#8217;re upgrading an existing environment or planning to import a bunch of files, you [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblogs.kraftkennedy.com%2Findex.php%2F2010%2F03%2F23%2Fsharepoint-2010-sql-express-size-limits%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblogs.kraftkennedy.com%2Findex.php%2F2010%2F03%2F23%2Fsharepoint-2010-sql-express-size-limits%2F" height="61" width="51" /></a></div><p>The single-server out of the box SharePoint 2010 installation uses SQL Express, which comes with a 4 GB limit.  This is in contrast to SharePoint 2007 which used the Windows Internal Database, a version of SQL Express with no size limit.  If you&#8217;re upgrading an existing environment or planning to import a bunch of files, you may easily hit this limit.<span id="more-1100"></span></p>
<p>Once this limit is reached, you&#8217;ll see errors like the following, when trying to do anything in SharePoint.  I saw this error just trying to activate a feature.  You&#8217;ll also get errors when tying to check out files or import new files.</p>
<p><em>Could not allocate space for object &#8216;dbo.EventCache&#8217;.'EventCache_Id&#8217; in database</em></p>
<p>Some solutions to work around this are to switch to SQL Server, which doesn&#8217;t have a file size limit, or to try to implement remote BLOB storage.  Getting the BLOBS out of SQL will significantly reduce the database size.  If the environment is just a test environment, you could also delete enough files out of the database or move files to a different database.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.kraftkennedy.com/index.php/2010/03/23/sharepoint-2010-sql-express-size-limits/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Missing &#8220;Master Page&#8221; link in SharePoint 2010 Settings</title>
		<link>http://blogs.kraftkennedy.com/index.php/2010/03/23/missing-master-page-link-in-sharepoint-2010-settings/</link>
		<comments>http://blogs.kraftkennedy.com/index.php/2010/03/23/missing-master-page-link-in-sharepoint-2010-settings/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 13:59:59 +0000</pubDate>
		<dc:creator>Michael Fettner</dc:creator>
				<category><![CDATA[Enterprise Content Management]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://blogs.kraftkennedy.com/?p=1096</guid>
		<description><![CDATA[When you create new sites in SharePoint 2010, you may find that &#8220;Master Page&#8221; is missing from the site settings, and there&#8217;s no apparent easy way to change the master page, outside of SharePoint Designer.  This happens when the publishing features are not enabled, and is easy to fix by just enabling the right features.
Site [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblogs.kraftkennedy.com%2Findex.php%2F2010%2F03%2F23%2Fmissing-master-page-link-in-sharepoint-2010-settings%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblogs.kraftkennedy.com%2Findex.php%2F2010%2F03%2F23%2Fmissing-master-page-link-in-sharepoint-2010-settings%2F" height="61" width="51" /></a></div><p>When you create new sites in SharePoint 2010, you may find that &#8220;Master Page&#8221; is missing from the site settings, and there&#8217;s no apparent easy way to change the master page, outside of SharePoint Designer.  This happens when the publishing features are not enabled, and is easy to fix by just enabling the right features.<span id="more-1096"></span></p>
<p>Site Settings will look as follows:</p>
<p><img class="alignnone size-full wp-image-1097" src="http://blogs.kraftkennedy.com/wp-content/uploads/2010/03/Capture.JPG" alt="Capture" width="279" height="127" /></p>
<p>All you have to do to fix is turn on the publishing features.  The &#8220;Master Page&#8221; setting is now dependant on the publishing infrastructure.  First, go into Site Collection Features and enable &#8220;SharePoint Server Publishing Infrastructure&#8221; at the site collection level.  Then go into Manage Site Features and enable &#8220;SharePoint Server Publishing&#8221; at the site level.</p>
<p>You&#8217;ll then get the master page and layout links as shown below:</p>
<p><img class="alignnone size-full wp-image-1098" src="http://blogs.kraftkennedy.com/wp-content/uploads/2010/03/Capture1.JPG" alt="Capture" width="307" height="152" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.kraftkennedy.com/index.php/2010/03/23/missing-master-page-link-in-sharepoint-2010-settings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simultaneous Editing in Office 2010 Web Apps: Only in Excel</title>
		<link>http://blogs.kraftkennedy.com/index.php/2010/03/08/simultaneous-editing-in-office-2010-web-apps-only-in-excel/</link>
		<comments>http://blogs.kraftkennedy.com/index.php/2010/03/08/simultaneous-editing-in-office-2010-web-apps-only-in-excel/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 16:59:26 +0000</pubDate>
		<dc:creator>Michael Fettner</dc:creator>
				<category><![CDATA[Enterprise Content Management]]></category>
		<category><![CDATA[Office 2010]]></category>
		<category><![CDATA[Office Web Apps]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://blogs.kraftkennedy.com/?p=1086</guid>
		<description><![CDATA[Simultaneous editing for collaboration is one of the most hyped features in Office 2010, however it&#8217;s only supported over the web in the Excel 2010 web app.  For Word and PowerPoint simultaneous editing, you&#8217;ll need to have the full client versions of the Office 2010 products.  This will likely be a disappointment for people who were [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblogs.kraftkennedy.com%2Findex.php%2F2010%2F03%2F08%2Fsimultaneous-editing-in-office-2010-web-apps-only-in-excel%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblogs.kraftkennedy.com%2Findex.php%2F2010%2F03%2F08%2Fsimultaneous-editing-in-office-2010-web-apps-only-in-excel%2F" height="61" width="51" /></a></div><p>Simultaneous editing for collaboration is one of the most hyped features in Office 2010, however it&#8217;s only supported over the web in the Excel 2010 web app.  For Word and PowerPoint simultaneous editing, you&#8217;ll need to have the full client versions of the Office 2010 products.  This will likely be a disappointment for people who were hoping to collaborate on documents from kiosks anywhere in the world.</p>
<p><span id="more-1086"></span>Below are some screen shots of what you&#8217;ll see if you try to simultaneously edit a document in SharePoint 2010:</p>
<h2>Word</h2>
<p>Word will only let multiple people edit a document at the same time if you&#8217;re using the full client.  In the Word 2010 web app, the second person will get this error:</p>
<p><img class="alignnone size-full wp-image-1087" src="http://blogs.kraftkennedy.com/wp-content/uploads/2010/03/Word.JPG" alt="Word" width="411" height="182" /></p>
<h2>PowerPoint</h2>
<p>PowerPoint will only let multiple people edit a presentation at the same time if you&#8217;re using the full client.  In the PowerPoint 2010 web app, the second person will get this error:</p>
<p> <img class="alignnone size-full wp-image-1088" src="http://blogs.kraftkennedy.com/wp-content/uploads/2010/03/ppt.JPG" alt="ppt" width="399" height="154" /></p>
<h2>Excel</h2>
<p>The Excel 2010 web app is the most advanced web application and allows multiple users to edit a spreadsheet at the same time.  Other users will see changes as they are made by someone.  If two users try to edit a cell at the same time, then the second edit will be the one that saves.</p>
<p>The Excel web app is shown in the screen shot below.</p>
<p><img class="alignnone size-full wp-image-1089" src="http://blogs.kraftkennedy.com/wp-content/uploads/2010/03/Excel1.JPG" alt="Excel1" width="560" height="212" /></p>
<p>In the bottom-right, the web app tells you how many users are currently editing the spreadsheet.</p>
<p><img class="alignnone size-full wp-image-1090" src="http://blogs.kraftkennedy.com/wp-content/uploads/2010/03/Excel2.JPG" alt="Excel2" width="168" height="66" /></p>
<p>Surprisingly, the Excel desktop client cannot participate in simultaneous editing.  This collaboration feature is only available from the web app.</p>
<h2>OneNote</h2>
<p>The OneNote web app does allow simultaneous editing, however edits should be limited to separate pages.  As long as users are working on separate pages, they will see updates that someone else made when clicking on the page.  When we tried to edit the same page between several users however, we were presented with &#8220;conflicting changes&#8221; errors as shown below, with the only option being to delete the page.</p>
<p><img class="alignnone size-full wp-image-1091" src="http://blogs.kraftkennedy.com/wp-content/uploads/2010/03/One-Notes.JPG" alt="One Notes" width="603" height="183" /></p>
<p>The simultaneous editing features in Office 2010 open up a lot of possibilities for collaboration, however it&#8217;s disappointing that only Excel can fully utilize it in the web application.  Our hope is that the next version of Office will fully support multi editing in both the web apps and the client versions.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.kraftkennedy.com/index.php/2010/03/08/simultaneous-editing-in-office-2010-web-apps-only-in-excel/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SharePoint Redirection Options in Upload and New Item Forms</title>
		<link>http://blogs.kraftkennedy.com/index.php/2010/02/17/sharepoint-redirection-options-in-upload-and-new-item-forms/</link>
		<comments>http://blogs.kraftkennedy.com/index.php/2010/02/17/sharepoint-redirection-options-in-upload-and-new-item-forms/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 17:57:34 +0000</pubDate>
		<dc:creator>Michael Fettner</dc:creator>
				<category><![CDATA[Enterprise Content Management]]></category>
		<category><![CDATA[MOSS]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[WSS]]></category>

		<guid isPermaLink="false">http://blogs.kraftkennedy.com/?p=1057</guid>
		<description><![CDATA[When you click &#8220;New Item&#8221; in any SharePoint list or &#8220;Upload&#8221; in any document library, SharePoint sends you to a standard form for creating the new item.  Behind the scenes, SharePoint also passes in two parameters to let the form know where to post the item and where to go after the item is posted.  [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblogs.kraftkennedy.com%2Findex.php%2F2010%2F02%2F17%2Fsharepoint-redirection-options-in-upload-and-new-item-forms%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblogs.kraftkennedy.com%2Findex.php%2F2010%2F02%2F17%2Fsharepoint-redirection-options-in-upload-and-new-item-forms%2F" height="61" width="51" /></a></div><p>When you click &#8220;New Item&#8221; in any SharePoint list or &#8220;Upload&#8221; in any document library, SharePoint sends you to a standard form for creating the new item.  Behind the scenes, SharePoint also passes in two parameters to let the form know where to post the item and where to go after the item is posted.  By leveraging these two parameters in the URL, you can make a link anywhere that posts data to any list and sends you someplace else when finished.  This has come in handy for us when creating intranet home pages, as we can create a list of links to post data to custom lists, which sends the person back to the home page afterwards.  Otherwise, the person would end up in the root of the list or library they submitted the item to.  So we were able to easily meet a requirement that the person be directed back to the home page after submitting the item.<br />
<span id="more-1057"></span><br />
A SharePoint new item link is structured as follows:</p>
<p><a href="https://intranet.kkl.com/development/Lists/Test1/NewForm.aspx?RootFolder=/development/Lists/Test1/sub&amp;Source=https://intranet.kkl.com">https://intranet.doman.com/site/Lists/listname/NewForm.aspx?RootFolder=/site/Lists/listname&amp;Source=https://intranet.domain.com</a></p>
<p>The two parameters of interest are <em>RootFolder</em> and <em>Source</em>.  <em>RootFolder </em>tells SharePoint where to post the document.  If it is removed from the URL then SharePoint will post data to the root of the list where newform.aspx is located.  You could also specify the path to a subfolder there, and SharePoint would post to that subfolder.  <em>Source </em>tells SharePoint where to go when the posting is complete.  The source needs to be a place in the site collection.  In the example link above it is back to the home page.  If source is left out of the URL then SharePoint will just return you back to the root of the list afterwards.</p>
<p>By using these two parameters, you can create lists of links on a page rather than having to drop in web parts, and you will gain more flexibility in how the user experience and navigation work.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.kraftkennedy.com/index.php/2010/02/17/sharepoint-redirection-options-in-upload-and-new-item-forms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
