<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-US"><title type="html">Ron Grzywacz&amp;#39;s Blog</title><subtitle type="html">A blog about SharePoint and related technologies</subtitle><id>http://blogs.msdn.com/b/ronalg/atom.aspx</id><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/ronalg/" /><link rel="self" type="application/atom+xml" href="http://blogs.msdn.com/b/ronalg/atom.aspx" /><generator uri="http://telligent.com" version="5.6.50428.7875">Telligent Evolution Platform Developer Build (Build: 5.6.50428.7875)</generator><updated>2013-01-07T12:20:00Z</updated><entry><title>Reimagine SharePoint Development Event</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/ronalg/archive/2013/05/06/reimagine-sharepoint-development-event.aspx" /><id>http://blogs.msdn.com/b/ronalg/archive/2013/05/06/reimagine-sharepoint-development-event.aspx</id><published>2013-05-06T17:58:36Z</published><updated>2013-05-06T17:58:36Z</updated><content type="html">&lt;p&gt;If you haven't heard, there's a new way to develop and integrate apps in SharePoint 2013. There's an event on May 20, 2013 that will go through this topic in depth. Feel free to sign up at the link below. &lt;/p&gt; &lt;p&gt;&lt;a title="http://msdn.microsoft.com/en-US/office/apps/dn133840" href="http://msdn.microsoft.com/en-US/office/apps/dn133840"&gt;http://msdn.microsoft.com/en-US/office/apps/dn133840&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10416408" width="1" height="1"&gt;</content><author><name>Ron Grzywacz</name><uri>http://blogs.msdn.com/ronalg/ProfileUrlRedirect.ashx</uri></author><category term="Development" scheme="http://blogs.msdn.com/b/ronalg/archive/tags/Development/" /><category term="SharePoint Server 2010" scheme="http://blogs.msdn.com/b/ronalg/archive/tags/SharePoint+Server+2010/" /><category term="SharePoint 2013" scheme="http://blogs.msdn.com/b/ronalg/archive/tags/SharePoint+2013/" /><category term="Apps" scheme="http://blogs.msdn.com/b/ronalg/archive/tags/Apps/" /></entry><entry><title>Adventures with SharePoint People Picker, Domain Migrations and Groups</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/ronalg/archive/2013/04/18/adventures-with-sharepoint-people-picker-domain-migrations-and-groups.aspx" /><id>http://blogs.msdn.com/b/ronalg/archive/2013/04/18/adventures-with-sharepoint-people-picker-domain-migrations-and-groups.aspx</id><published>2013-04-18T19:02:00Z</published><updated>2013-04-18T19:02:00Z</updated><content type="html">&lt;p&gt;I recently worked a customer issue, where the customer was going through a domain migration. The customer is running SharePoint 2010. (This works for both 2007 and 2013 as well) There are two forests, with users in both. Users from one of the domains were being moved to the domain in the other forest. As part of the process, accounts were being pre-created with SIDHistory and set in a disabled state. This created a bit of an issue for people picker. In order to have people picker play nice with this configuration, you need to do a couple things. The first is to make sure you're on the &lt;a href="http://support.microsoft.com/kb/2687339"&gt;August 2012 Cumulative Update for SharePoint 2010&lt;/a&gt;. This introduces an STSADM command (stsadm -o setproperty -propertyname "HideInactiveProfiles" -propertyvalue "true") that let's us hide the inactive users. In addition to this, you also need to set your people picker "SearchADCustomFilter" property to exclude the disabled users. You can see how to &lt;a href="http://technet.microsoft.com/en-us/library/gg602075(v=office.14).aspx"&gt;Configure People Picker&lt;/a&gt; settings on TechNet. (There's an issue with SID to name resolution that requires you to use both the patch and the SearchADCustomFilter property. I'll spare you the details) There's a small issue with the TechNet article. It doesn't include groups in the syntax it provides for your SearchADCustomFilter property. In order to keep People Picker finding groups, you need to use the following syntax for your SearchADCustomFilter property.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;pre class="scroll"&gt;&lt;code class="csharp"&gt;(|(objectCategory=group)(&amp;amp;(objectCategory=person)(objectClass=user)(!objectClass=inetOrgPerson)(!userAccountControl:1.2.840.113556.1.4.803:=2))) &lt;br /&gt; &lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;After making these changes, you should only see the accounts for the active user, in whichever domain the account is active in. Remember, you need to do this for each web application.&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Here's some quick bonus info. You can also use PowerShell to access the people picker properties. The following info should get you started.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;pre class="scroll"&gt;&lt;code class="csharp"&gt; $webapp = Get-SPWebApplication http://yourwebapp.com&lt;br /&gt; $webapp.PeoplePickerSettings //Displays your current values&lt;br /&gt; &lt;br /&gt; $webapp.PeoplePickerSettings.SearchADCustomFilter = "(|(objectCategory=group)(&amp;amp;(objectCategory=person)(objectClass=user)(!objectClass=inetOrgPerson)(!userAccountControl:1.2.840.113556.1.4.803:=2))) " //Sets the SearchADCustomFilter value&lt;br /&gt; $webapp.Update() //commits the change&lt;br /&gt; &lt;br /&gt; $webapp.PeoplePickerSettings //Displays the updated values&lt;br /&gt; &lt;/code&gt;&lt;/pre&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10412352" width="1" height="1"&gt;</content><author><name>Ron Grzywacz</name><uri>http://blogs.msdn.com/ronalg/ProfileUrlRedirect.ashx</uri></author><category term="SharePoint Server 2007" scheme="http://blogs.msdn.com/b/ronalg/archive/tags/SharePoint+Server+2007/" /><category term="SharePoint 2007" scheme="http://blogs.msdn.com/b/ronalg/archive/tags/SharePoint+2007/" /><category term="SharePoint Server 2010" scheme="http://blogs.msdn.com/b/ronalg/archive/tags/SharePoint+Server+2010/" /><category term="SharePoint 2010" scheme="http://blogs.msdn.com/b/ronalg/archive/tags/SharePoint+2010/" /><category term="Troubleshooting" scheme="http://blogs.msdn.com/b/ronalg/archive/tags/Troubleshooting/" /><category term="User Profiles" scheme="http://blogs.msdn.com/b/ronalg/archive/tags/User+Profiles/" /><category term="SharePoint 2013" scheme="http://blogs.msdn.com/b/ronalg/archive/tags/SharePoint+2013/" /></entry><entry><title>SharePoint 2010 Service Pack 2 (SP2) and Windows Server 2012</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/ronalg/archive/2013/03/25/sharepoint-2010-service-pack-2-sp2-and-windows-server-2012.aspx" /><id>http://blogs.msdn.com/b/ronalg/archive/2013/03/25/sharepoint-2010-service-pack-2-sp2-and-windows-server-2012.aspx</id><published>2013-03-25T17:24:20Z</published><updated>2013-03-25T17:24:20Z</updated><content type="html">&lt;p&gt;I frequently see the question asking if/when will Service Pack 2 for SharePoint 2010 will be released. I don't know when, but if we look at the following KB article, it &lt;strong&gt;&lt;u&gt;&lt;em&gt;appears &lt;/em&gt;&lt;/u&gt;&lt;/strong&gt;there will be a Service Pack 2 for SP2010. It will add support for Windows Server 2012. As always, things can change. I'm reading the same KB article that you are. My crystal ball is in the shop this week. &lt;img class="wlEmoticon wlEmoticon-smile" style="border-top-style: none; border-left-style: none; border-bottom-style: none; border-right-style: none" alt="Smile" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-88-17-metablogapi/1581.wlEmoticon_2D00_smile_5F00_2.png"&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;&lt;a title="http://support.microsoft.com/kb/2724471" href="http://support.microsoft.com/kb/2724471"&gt;http://support.microsoft.com/kb/2724471&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10405170" width="1" height="1"&gt;</content><author><name>Ron Grzywacz</name><uri>http://blogs.msdn.com/ronalg/ProfileUrlRedirect.ashx</uri></author><category term="Service Pack" scheme="http://blogs.msdn.com/b/ronalg/archive/tags/Service+Pack/" /><category term="SharePoint Server 2010" scheme="http://blogs.msdn.com/b/ronalg/archive/tags/SharePoint+Server+2010/" /><category term="SharePoint 2010" scheme="http://blogs.msdn.com/b/ronalg/archive/tags/SharePoint+2010/" /><category term="Windows Server 2012" scheme="http://blogs.msdn.com/b/ronalg/archive/tags/Windows+Server+2012/" /></entry><entry><title>Remove the Quick Launch in SharePoint 2013</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/ronalg/archive/2013/03/14/remove-the-quick-launch-in-sharepoint-2013.aspx" /><id>http://blogs.msdn.com/b/ronalg/archive/2013/03/14/remove-the-quick-launch-in-sharepoint-2013.aspx</id><published>2013-03-14T19:56:00Z</published><updated>2013-03-14T19:56:00Z</updated><content type="html">&lt;p&gt;There are two ways to remove the Quick Launch in SharePoint 2013. The first is to open the site in Share Designer, and uncheck the option to "Display Quick Launch". While this works, it doesn't move the content to the left. You're left with an empty space that doesn't look great.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-88-17-metablogapi/5722.image_5F00_2.png"&gt;&lt;img style="background-image: none; padding-top: 0px; padding-left: 0px; margin: 0px; display: inline; padding-right: 0px; border: 0px;" title="image" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-88-17-metablogapi/5228.image_5F00_thumb.png" alt="image" width="244" height="164" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The second option is to alter the CSS using a Script Editor web part. Place a Script Editor webpart anywhere on the page, and add the following code. The first line removes the Quick Launch. The second line moves the code all the way to the left.&lt;/p&gt;
&lt;pre class="scroll"&gt;&lt;code class="html"&gt;&amp;lt;style&amp;gt;&lt;br /&gt;.ms-core-navigation { DISPLAY: none }&lt;br /&gt;#contentBox { margin-left: 0px }&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt; &lt;/code&gt;&lt;/pre&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10402423" width="1" height="1"&gt;</content><author><name>Ron Grzywacz</name><uri>http://blogs.msdn.com/ronalg/ProfileUrlRedirect.ashx</uri></author><category term="SharePoint Designer" scheme="http://blogs.msdn.com/b/ronalg/archive/tags/SharePoint+Designer/" /><category term="SharePoint 2013" scheme="http://blogs.msdn.com/b/ronalg/archive/tags/SharePoint+2013/" /><category term="O365" scheme="http://blogs.msdn.com/b/ronalg/archive/tags/O365/" /></entry><entry><title>Moving a SharePoint 2013 site template from On Premise to the Cloud aka Office 365</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/ronalg/archive/2013/02/25/moving-a-sharepoint-2013-site-template-from-on-premise-to-the-cloud.aspx" /><id>http://blogs.msdn.com/b/ronalg/archive/2013/02/25/moving-a-sharepoint-2013-site-template-from-on-premise-to-the-cloud.aspx</id><published>2013-02-25T19:13:00Z</published><updated>2013-02-25T19:13:00Z</updated><content type="html">&lt;p&gt;I've recently volunteered for a project to recreate a couple of site templates for SP2013. During this process, I was creating the items on a farm in my lab. (On Premise/Private Cloud) When I finished up my work, I needed to test that the template worked on O365. When I moved the template over, I was getting errors creating new sites with the template. The errors stated that I wasn't licensed for some enterprise features on the E3 trial I was using. (From my limited understanding of O365 licensing and features, I thought I should be licensed) Anyway, I needed to make this work, and in a hurry. The error message I was getting was something along the lines of "Not licensed for this feature" with the information about the feature listed. You can see the specific error message below. In order to move this over to the cloud, I needed to deactivate this feature. I checked the Site Features and Site Collection feature pages in the site administration section of the site, but I didn't see anything that matched the feature name. The feature must have been hidden. I looked in the 15 hive, and found in fact that it is hidden by default. (No changing files in the 15 hive!)&amp;nbsp; You could use the PowerShell command let &lt;a href="http://technet.microsoft.com/en-us/library/ff607879.aspx"&gt;Disable-SPFeature&lt;/a&gt; to disable the feature. I used &lt;a href="http://spm.codeplex.com/"&gt;SharePoint Manager&lt;/a&gt;. After exporting the site again, and moving the template back to the cloud, the site created successfully. &lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;SearchDrivenContent 592ccb4a-9304-49ab-aab1-66638198bb58 Site&lt;/p&gt; &lt;p&gt;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-88-17-metablogapi/6232.image_5F00_2.png"&gt;&lt;img title="image" style="border-top: 0px; border-right: 0px; background-image: none; border-bottom: 0px; padding-top: 0px; padding-left: 0px; margin: 0px; border-left: 0px; display: inline; padding-right: 0px" border="0" alt="image" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-88-17-metablogapi/8306.image_5F00_thumb.png" width="244" height="136"&gt;&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10396893" width="1" height="1"&gt;</content><author><name>Ron Grzywacz</name><uri>http://blogs.msdn.com/ronalg/ProfileUrlRedirect.ashx</uri></author><category term="SharePoint 2013" scheme="http://blogs.msdn.com/b/ronalg/archive/tags/SharePoint+2013/" /><category term="Site Template" scheme="http://blogs.msdn.com/b/ronalg/archive/tags/Site+Template/" /><category term="O365" scheme="http://blogs.msdn.com/b/ronalg/archive/tags/O365/" /><category term="On Premise" scheme="http://blogs.msdn.com/b/ronalg/archive/tags/On+Premise/" /><category term="Cloud" scheme="http://blogs.msdn.com/b/ronalg/archive/tags/Cloud/" /></entry><entry><title>Windows 8 and the Microsoft Bluetooth Notebook Mouse 5000</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/ronalg/archive/2013/02/21/windows-8-and-the-microsoft-bluetooth-notebook-mouse-5000.aspx" /><id>http://blogs.msdn.com/b/ronalg/archive/2013/02/21/windows-8-and-the-microsoft-bluetooth-notebook-mouse-5000.aspx</id><published>2013-02-21T18:55:27Z</published><updated>2013-02-21T18:55:27Z</updated><content type="html">&lt;p&gt;I have a Microsoft Wireless Notebook Bluetooth Mouse 5000 for my laptop, when I go mobile. I like this mouse, because it doesn’t have an extra dongle that eats up a USB port. When I just booted my laptop up, my mouse wasn’t connecting. It had been working fine the last time I used it, several months ago. I tried to break the pairing from the PC and reconnect it, but it seemed like the process wasn’t completing. Windows 8 showed the mouse as a registered device, but the Green/Red pairing sequence kept happening on the mouse. I had been doing the pairing from the “classic” interface. I switched over to using the Metro version of the “devices” app, that can be found via “Settings”. When I repaired the mouse, it worked successfully.&lt;/p&gt;  &lt;p&gt;This is the Metro screen I used to do the pairing. &lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-88-17-metablogapi/2538.image_5F00_328A6FFB.png"&gt;&lt;img title="image" style="margin: 0px; display: inline; background-image: none;" border="0" alt="image" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-88-17-metablogapi/0871.image_5F00_thumb_5F00_5160E3D9.png" width="244" height="139"&gt;&amp;#160;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10395991" width="1" height="1"&gt;</content><author><name>Ron Grzywacz</name><uri>http://blogs.msdn.com/ronalg/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>SharePoint 2013 Workflow-Collect Data from a user and other actions missing</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/ronalg/archive/2013/02/20/sharepoint-2013-workflow-collect-data-from-a-user-and-other-actions-missing.aspx" /><id>http://blogs.msdn.com/b/ronalg/archive/2013/02/20/sharepoint-2013-workflow-collect-data-from-a-user-and-other-actions-missing.aspx</id><published>2013-02-20T18:57:31Z</published><updated>2013-02-20T18:57:31Z</updated><content type="html">&lt;p&gt;I got tapped to help with an internal project to upgrade a couple of custom site templates from SharePoint 2010 to SharePoint 2013. No big deal right? I'll just create a new site in SP2010 off of the original template, content DB attach it to 2013, and then export the template again. Well, it looks like I found a couple hiccups in the RTM upgrade process, that didn't let me do what I want with these templates. (The PG has them and is investigating) So, I'm stuck manually recreating them.&amp;nbsp; One of the big pieces of the site is a workflow for tracking changes and states of items in a list. (Warning, I RARELY create SPD workflows.) I created a new workflow and starting clicking away. I got about 20 steps in, and couldn't get SharePoint Designer 2013 to create a "Collect Data" action. After doing some digging, it looks like there is a big list of workflow actions that were part of SharePoint 2010 that are no longer part of SharePoint 2013. The list is pasted below, along with a source link. Fear not though. SharePoint 2013 still allows users to create workflows on the SharePoint 2010 platform. If you need these legacy actions, make sure you select the "Platform Type" as SharePoint 2010 when you create the workflow. You cannot change the platform type once the workflow is created. I found this out the hard way. &lt;img class="wlEmoticon wlEmoticon-sadsmile" style="border-top-style: none; border-left-style: none; border-bottom-style: none; border-right-style: none" alt="Sad smile" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-88-17-metablogapi/7455.wlEmoticon_2D00_sadsmile_5F00_2.png"&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-88-17-metablogapi/8446.image_5F00_2.png"&gt;&lt;img title="image" style="border-top: 0px; border-right: 0px; background-image: none; border-bottom: 0px; padding-top: 0px; padding-left: 0px; margin: 0px; border-left: 0px; display: inline; padding-right: 0px" border="0" alt="image" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-88-17-metablogapi/1172.image_5F00_thumb.png" width="244" height="192"&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;Source Link: &lt;a title="http://msdn.microsoft.com/en-us/library/jj728659.aspx" href="http://msdn.microsoft.com/en-us/library/jj728659.aspx"&gt;http://msdn.microsoft.com/en-us/library/jj728659.aspx&lt;/a&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;The following features are available only on the SharePoint 2010 Workflow platform: &lt;ul&gt; &lt;li&gt; &lt;p&gt;Actions: &lt;ul&gt; &lt;li&gt; &lt;p&gt;Stop Workflow&lt;/p&gt; &lt;li&gt; &lt;p&gt;Capture a Version of the Document Set&lt;/p&gt; &lt;li&gt; &lt;p&gt;Send Document Set to Repository&lt;/p&gt; &lt;li&gt; &lt;p&gt;Set Content Approval Status for the Document Set&lt;/p&gt; &lt;li&gt; &lt;p&gt;Start Document Set Approval Process&lt;/p&gt; &lt;li&gt; &lt;p&gt;Declare Record&lt;/p&gt; &lt;li&gt; &lt;p&gt;Set Content Approval Status&lt;/p&gt; &lt;li&gt; &lt;p&gt;Undeclare Record&lt;/p&gt; &lt;li&gt; &lt;p&gt;Add List Item &lt;/p&gt; &lt;li&gt; &lt;p&gt;Inherit List Item Parent Permissions&lt;/p&gt; &lt;li&gt; &lt;p&gt;Remove List Item Permissions&lt;/p&gt; &lt;li&gt; &lt;p&gt;Replace List Item Permissions&lt;/p&gt; &lt;li&gt; &lt;p&gt;Lookup Manager of a User&lt;/p&gt; &lt;li&gt; &lt;p&gt;Assign a Form to a Group&lt;/p&gt; &lt;li&gt; &lt;p&gt;Assign a To-Do Item&lt;/p&gt; &lt;li&gt; &lt;p&gt;Collect Data from a User&lt;/p&gt; &lt;li&gt; &lt;p&gt;Start Approval Process&lt;/p&gt; &lt;li&gt; &lt;p&gt;Start Custom Task Process&lt;/p&gt; &lt;li&gt; &lt;p&gt;Start Feedback Process&lt;/p&gt; &lt;li&gt; &lt;p&gt;Copy List Item (SharePoint Designer 2013 supports only the document-copying action.)&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt; &lt;li&gt; &lt;p&gt;Conditions: &lt;ul&gt; &lt;li&gt; &lt;p&gt;If current item field equals value&lt;/p&gt; &lt;li&gt; &lt;p&gt;Check list item permission levels&lt;/p&gt; &lt;li&gt; &lt;p&gt;Check list item permissions&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt; &lt;li&gt; &lt;p&gt;Steps: &lt;ul&gt; &lt;li&gt; &lt;p&gt;Impersonation Step:&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt; &lt;li&gt; &lt;p&gt;Data sources: &lt;ul&gt; &lt;li&gt; &lt;p&gt;User Profile lookup&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt; &lt;li&gt; &lt;p&gt;Other features: &lt;ul&gt; &lt;li&gt; &lt;p&gt;Visio integration&lt;/p&gt; &lt;li&gt; &lt;p&gt;Association Column&lt;/p&gt; &lt;li&gt; &lt;p&gt;Content Type Association for reusable workflow&lt;/p&gt; &lt;li&gt; &lt;p&gt;'Require Manage List/Web Permission' feature for list/site workflow&lt;/p&gt; &lt;li&gt; &lt;p&gt;Globally reusable workflow type&lt;/p&gt; &lt;li&gt; &lt;p&gt;Workflow visualization option&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10395660" width="1" height="1"&gt;</content><author><name>Ron Grzywacz</name><uri>http://blogs.msdn.com/ronalg/ProfileUrlRedirect.ashx</uri></author><category term="SharePoint" scheme="http://blogs.msdn.com/b/ronalg/archive/tags/SharePoint/" /><category term="SharePoint Designer" scheme="http://blogs.msdn.com/b/ronalg/archive/tags/SharePoint+Designer/" /><category term="SharePoint 2010" scheme="http://blogs.msdn.com/b/ronalg/archive/tags/SharePoint+2010/" /><category term="SharePoint 2013" scheme="http://blogs.msdn.com/b/ronalg/archive/tags/SharePoint+2013/" /><category term="Workflow" scheme="http://blogs.msdn.com/b/ronalg/archive/tags/Workflow/" /></entry><entry><title>Visio stencils for SharePoint 2013</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/ronalg/archive/2013/02/14/visio-stencils-for-sharepoint-2013.aspx" /><id>http://blogs.msdn.com/b/ronalg/archive/2013/02/14/visio-stencils-for-sharepoint-2013.aspx</id><published>2013-02-14T14:43:38Z</published><updated>2013-02-14T14:43:38Z</updated><content type="html">&lt;p&gt;If you're about to diagram your upcoming SharePoint 2013 farm, or want to update the one you've already made, we just released some new Visio stencils for SharePoint 2013. Big thanks to &lt;a href="http://blogs.msdn.com/b/kaevans/"&gt;Kirk Evans&lt;/a&gt; for making me aware of this. &lt;/p&gt; &lt;p&gt;&lt;a title="http://blogs.technet.com/b/tothesharepoint/archive/2013/02/13/get-the-new-office-visio-stencil-with-the-cool-icons.aspx" href="http://blogs.technet.com/b/tothesharepoint/archive/2013/02/13/get-the-new-office-visio-stencil-with-the-cool-icons.aspx"&gt;http://blogs.technet.com/b/tothesharepoint/archive/2013/02/13/get-the-new-office-visio-stencil-with-the-cool-icons.aspx&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10393693" width="1" height="1"&gt;</content><author><name>Ron Grzywacz</name><uri>http://blogs.msdn.com/ronalg/ProfileUrlRedirect.ashx</uri></author><category term="SharePoint 2013" scheme="http://blogs.msdn.com/b/ronalg/archive/tags/SharePoint+2013/" /></entry><entry><title>Can I upgrade from SharePoint 2007 directly to SharePoint 2013?</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/ronalg/archive/2013/01/28/can-i-upgrade-from-sharepoint-2007-directly-to-sharepoint-2013.aspx" /><id>http://blogs.msdn.com/b/ronalg/archive/2013/01/28/can-i-upgrade-from-sharepoint-2007-directly-to-sharepoint-2013.aspx</id><published>2013-01-29T00:30:45Z</published><updated>2013-01-29T00:30:45Z</updated><content type="html">&lt;p&gt;A lot of customers want to know if you can upgrade from SharePoint Server 2007/WSS 3.0 to SharePoint 2013. The answer to that question is not directly. You'll have to upgrade your content and service applications(if required) through the process to get to 2010 and then to 2013. If you don't want to do the double upgrade (I know I wouldn't), you can look to 3rd party vendor migration tools. A lot of them will take care of this for you, for an added cost of course. Don't get scared off by the idea that these tools cost money, because people and time cost money too. &lt;/p&gt; &lt;p&gt;&lt;a title="http://technet.microsoft.com/en-us/library/ee947141.aspx" href="http://technet.microsoft.com/en-us/library/ee947141.aspx"&gt;http://technet.microsoft.com/en-us/library/ee947141.aspx&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10388989" width="1" height="1"&gt;</content><author><name>Ron Grzywacz</name><uri>http://blogs.msdn.com/ronalg/ProfileUrlRedirect.ashx</uri></author><category term="SharePoint Server 2007" scheme="http://blogs.msdn.com/b/ronalg/archive/tags/SharePoint+Server+2007/" /><category term="SharePoint" scheme="http://blogs.msdn.com/b/ronalg/archive/tags/SharePoint/" /><category term="SharePoint 2007" scheme="http://blogs.msdn.com/b/ronalg/archive/tags/SharePoint+2007/" /><category term="Upgrade/Migration" scheme="http://blogs.msdn.com/b/ronalg/archive/tags/Upgrade_2F00_Migration/" /><category term="SharePoint 2013" scheme="http://blogs.msdn.com/b/ronalg/archive/tags/SharePoint+2013/" /></entry><entry><title>SharePoint 2010 and PowerShell 3.0</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/ronalg/archive/2013/01/07/sharepoint-2010-and-powershell-3-0.aspx" /><id>http://blogs.msdn.com/b/ronalg/archive/2013/01/07/sharepoint-2010-and-powershell-3-0.aspx</id><published>2013-01-07T17:20:00Z</published><updated>2013-01-07T17:20:00Z</updated><content type="html">&lt;p&gt;SharePoint 2010 does not support PowerShell 3.0 at this time. If you or your admin team install PS 3.0 on your SharePoint 2010 farm, you will have some compatibility issues with the SharePoint 2010 Management Shell. This happens, because the shortcut to start the management shell generically targets the most recent version of PS installed, not 2.0. If you believe you are having this issue you will likely see an error similar to the one below.&lt;/p&gt;
&lt;p&gt;Error: "The local farm is not accessible. Cmdlets with FeatureDependencyId are not registered."&lt;br /&gt;When trying to do any operation for example Get-SPWeb you will get this error message:"Microsoft SharePoint is not supported with version 4.0.30319.17929 of the Microsoft .Net Runtime."&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;As of today (1/7/2013) there is no public fix for this. There is a work around. You need to change the target for the SharePoint 2010 Management Shell shortcut to the following. This specifically targets the 2.0 version of PS, which the SP2010 commandlets are compatible with. &lt;/p&gt;
&lt;pre class="scroll"&gt;&lt;code class="csharp"&gt;C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -Version 2.0 -NoExit " &amp;amp; ' C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\CONFIG\POWERSHELL\Registration\\sharepoint.ps1 ' "&lt;/code&gt;&lt;/pre&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10382902" width="1" height="1"&gt;</content><author><name>Ron Grzywacz</name><uri>http://blogs.msdn.com/ronalg/ProfileUrlRedirect.ashx</uri></author><category term="SharePoint" scheme="http://blogs.msdn.com/b/ronalg/archive/tags/SharePoint/" /><category term="SharePoint 2010" scheme="http://blogs.msdn.com/b/ronalg/archive/tags/SharePoint+2010/" /><category term="PowerShell" scheme="http://blogs.msdn.com/b/ronalg/archive/tags/PowerShell/" /></entry></feed>