<?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>SharePoint Tech Dives &#8482;</title>
	<atom:link href="http://www.sptechdives.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.sptechdives.com</link>
	<description>Community tips, tricks, and best practices on SharePoint related technologies</description>
	<lastBuildDate>Sat, 01 May 2010 22:26:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Building a SharePoint 2010 Extranet using Claims Based Authentication &#8211; Slide Deck Now Available</title>
		<link>http://www.sptechdives.com/?p=293</link>
		<comments>http://www.sptechdives.com/?p=293#comments</comments>
		<pubDate>Sat, 01 May 2010 22:26:39 +0000</pubDate>
		<dc:creator>Rafael Perez</dc:creator>
				<category><![CDATA[Claims]]></category>
		<category><![CDATA[Extranets]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://www.sptechdives.com/?p=293</guid>
		<description><![CDATA[Big thanks to Brian Culver for presenting this week at SPTechDives and to all who attended. Click here to download his presentation.
]]></description>
			<content:encoded><![CDATA[<p>Big thanks to Brian Culver for presenting this week at SPTechDives and to all who attended. <a href="http://www.slideshare.net/bculver/sharepoint-saturday-houston-sharepoint-2010-extranets-claims-authentication">Click here to download his presentation.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sptechdives.com/?feed=rss2&amp;p=293</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing SharePoint 2010 Managed Account Passwords with PowerShell</title>
		<link>http://www.sptechdives.com/?p=290</link>
		<comments>http://www.sptechdives.com/?p=290#comments</comments>
		<pubDate>Wed, 28 Apr 2010 01:16:55 +0000</pubDate>
		<dc:creator>Rafael Perez</dc:creator>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[Managed Accounts]]></category>
		<category><![CDATA[Service Accounts]]></category>
		<category><![CDATA[SharePoint Administration]]></category>

		<guid isPermaLink="false">http://www.sptechdives.com/?p=290</guid>
		<description><![CDATA[A SharePoint 2010 Managed Account, is essentially a Service Account whose credentials are managed by SharePoint, which can automatically change the password of the account based on a given policy / schedule. Check out the posting “Managed Accounts” in Bill Baer’s Blog for more detailed information. 
While most of the configuration of managed accounts will [...]]]></description>
			<content:encoded><![CDATA[<p>A SharePoint 2010 Managed Account, is essentially a Service Account whose credentials are managed by SharePoint, which can automatically change the password of the account based on a given policy / schedule. Check out the posting “<a href="http://blogs.technet.com/wbaer/archive/2010/04/11/managed-accounts.aspx">Managed Accounts</a>” in Bill Baer’s Blog for more detailed information. </p>
<p>While most of the configuration of managed accounts will likely take place in Central Administration, at some point you may need (or simply prefer) to change the password via PowerShell. Personally, I ran into the need, as my farm account password had been changed and the Central Administration site would not run. </p>
<p>I used the following PowerShell script to change the Managed Account password.</p>
<pre style="background-color: black; font-family: consolas, courier new, courier, monospace; color: #ffffff; font-size: small">$ver = $host | select version
if ($ver.Version.Major -gt 1)  {$Host.Runspace.ThreadOptions = ReuseThread&quot;}
Add-PsSnapin Microsoft.SharePoint.PowerShell
Set-location $home

$inManagedAcct = Read-Host 'Service Account'

$managedAcct = Get-SPManagedAccount $inManagedAcct

$inPass = Read-Host 'Enter Password' -AsSecureString
$inPassConfirm = Read-Host'Confirm Password' -AsSecureString

Set-SPManagedAccount -Identity $managedAcct -NewPassword $inPass -ConfirmPassword $inPassConfirm -SetNewPassword</pre>
<p>
  <br /><a href="http://www.rafelo.com/changepass.zip">Click here to download the PS1 file</a>. You may need to remove the first few lines that load the SharePoint PowerShell snap-in, if you intend to run the script from the “SharePoint 2010 Management Shell” console. </p>
<p></p>
<p><a href="http://blog.rafelo.com/2010/04/changing-sharepoint-2010-managed.html">Original Posting</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sptechdives.com/?feed=rss2&amp;p=290</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Outlook 2010 Cool Feature &#8211; Notification of Automatic Reply before sending out email</title>
		<link>http://www.sptechdives.com/?p=286</link>
		<comments>http://www.sptechdives.com/?p=286#comments</comments>
		<pubDate>Fri, 09 Apr 2010 00:14:56 +0000</pubDate>
		<dc:creator>Rafael Perez</dc:creator>
				<category><![CDATA[Office 2010]]></category>
		<category><![CDATA[Outlook 2010]]></category>
		<category><![CDATA[Cool Content]]></category>

		<guid isPermaLink="false">http://www.sptechdives.com/?p=286</guid>
		<description><![CDATA[Check out the original posting at http://blog.rafelo.com/2010/04/outlook-2010-cool-feature-notification.html
]]></description>
			<content:encoded><![CDATA[<p>Check out the original posting at <a title="http://blog.rafelo.com/2010/04/outlook-2010-cool-feature-notification.html" href="http://blog.rafelo.com/2010/04/outlook-2010-cool-feature-notification.html">http://blog.rafelo.com/2010/04/outlook-2010-cool-feature-notification.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sptechdives.com/?feed=rss2&amp;p=286</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Office 2010 &#8211; Share / Save to SharePoint Feature</title>
		<link>http://www.sptechdives.com/?p=280</link>
		<comments>http://www.sptechdives.com/?p=280#comments</comments>
		<pubDate>Wed, 31 Mar 2010 20:34:50 +0000</pubDate>
		<dc:creator>Rafael Perez</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.sptechdives.com/?p=280</guid>
		<description><![CDATA[I’ve been using MS Office 2010 as my primary office productivity suite for quite some time now and have been very pleased. It’s very clear that a lot of thought was put into the products; not just focused on added functionality, but making them more intuitive, really improving the user experience. So many features come [...]]]></description>
			<content:encoded><![CDATA[<p>I’ve been using MS Office 2010 as my primary office productivity suite for quite some time now and have been very pleased. It’s very clear that a lot of thought was put into the products; not just focused on added functionality, but making them more intuitive, really improving the user experience. So many features come as second nature, that you don’t even realize that they are new. Until you are stuck with a workstation with a previous version of Office installed. </p>
<p>One such feature is the “Share” menu, with the option to “Save to SharePoint”. The following screenshot is from the MS Word 2010 Menu after creating a brand new file… complete with Recent Locations. </p>
<p><a href="http://www.sptechdives.com/wp-content/uploads/2010/03/image.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.sptechdives.com/wp-content/uploads/2010/03/image_thumb.png" width="578" height="396" /></a></p>
<p>May not seem like much, but try living without it after you’ve had it for quite some time. </p>
<p>True, we’ve had “My SharePoint Sites” within the “Save File” screen in previous versions. But its never quite worked as expected… you had to explicitly be a “Member” of the site (not through an AD group), the profile import had to be working just right, after you were made a “Member” of the site it may not have shown up on your list until the following day, and a slew of other things. You could also say that we had “My Network Places”, but that required a certain level of proactivity that often times you just don’t have. </p>
<p>Nothing in Office 2010 was my idea… but to whoever's idea this feature was; Thanks for keeping my experience in mind. </p>
<p><a href="http://blog.rafelo.com/2010/03/office-2010-share-save-to-sharepoint.html">Original Blog Post</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sptechdives.com/?feed=rss2&amp;p=280</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint Saturday Houston, May 1st 2010. Now Open for Registration</title>
		<link>http://www.sptechdives.com/?p=263</link>
		<comments>http://www.sptechdives.com/?p=263#comments</comments>
		<pubDate>Wed, 17 Mar 2010 16:22:39 +0000</pubDate>
		<dc:creator>Rafael Perez</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Events]]></category>

		<guid isPermaLink="false">http://www.sptechdives.com/?p=263</guid>
		<description><![CDATA[The Houston SharePoint User Group (HSPUG) is proud to present the first SharePoint Saturday event for the greater Houston area on May 1, 2010.
This event will be from 8:00 am – 6:00 pm at Norris Conference Center, 803 Town &#38; Country Lane, Houston, TX 77024.&#160; 713-590-0950.&#160; We will provide a continental breakfast, break refreshments and [...]]]></description>
			<content:encoded><![CDATA[<p>The Houston SharePoint User Group (HSPUG) is proud to present the first SharePoint Saturday event for the greater Houston area on May 1, 2010.</p>
<p>This event will be from 8:00 am – 6:00 pm at <a href="http://www.norriscenters.com/HoustonCC/">Norris Conference Center</a>, 803 Town &amp; Country Lane, Houston, TX 77024.&#160; 713-590-0950.&#160; We will provide a continental breakfast, break refreshments and hot lunch.&#160; Parking is free in the parking garage (adjacent to Norris and Studio Movie Grill) in the 3rd level and above.&#160; Enter Norris on the third level from the south end of the parking garage.</p>
<p><b><i>About SharePoint Saturday</i></b>:&#160; Whether you are a IT professional, professional, business owner, manager or enthusiast, SharePoint Saturday is an educational, informative &amp; lively day filled with sessions from respected SharePoint professionals &amp; MVPs, covering a wide variety of SharePoint-orientated topics. SharePoint Saturday is FREE, open to the public and is your local chance to immerse yourself in SharePoint!</p>
<p><em>Seats are limited so, register today! </em><a title="http://www.sharepointsaturday.org/houston/default.aspx" href="http://www.sharepointsaturday.org/houston/default.aspx">http://www.sharepointsaturday.org/houston/default.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sptechdives.com/?feed=rss2&amp;p=263</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>BCS External List Error &#8211; Unable to Display this Web Part.</title>
		<link>http://www.sptechdives.com/?p=262</link>
		<comments>http://www.sptechdives.com/?p=262#comments</comments>
		<pubDate>Wed, 17 Mar 2010 05:47:27 +0000</pubDate>
		<dc:creator>Rafael Perez</dc:creator>
				<category><![CDATA[BCS]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[Troubleshooting]]></category>

		<guid isPermaLink="false">http://www.sptechdives.com/?p=262</guid>
		<description><![CDATA[Tonight while presenting at SharePoint Tech Dives I ran into the following error: 
Unable to display this Web Part. To troubleshoot the problem, open this Web page in a Microsoft SharePoint Foundation-compatible HTML editor such as Microsoft SharePoint Designer. If the problem persists, contact your Web server administrator. 
Correlation ID:[SomeCorrelationID]
This is not an uncommon error, [...]]]></description>
			<content:encoded><![CDATA[<p>Tonight while presenting at SharePoint Tech Dives I ran into the following error: </p>
<p><em>Unable to display this Web Part. To troubleshoot the problem, open this Web page in a Microsoft SharePoint Foundation-compatible HTML editor such as Microsoft SharePoint Designer. If the problem persists, contact your Web server administrator. </em></p>
<p><em>Correlation ID:[SomeCorrelationID]</em></p>
<p>This is not an uncommon error, its also not very descriptive. But just a little digging around in the ULS logs using the Correlation ID should quickly reveal the problem. Which (when external lists are involved) usually has something to do with security; like specifying that the Data Source Connection use the users identity when not all users have access to the back-end system. But that was not the case here; I configured it to Connect with an Impersonated Windows Identity, set up and configured a Secure Store Target Application, and triple-checked that I specified the correct Target Application ID. But the error persisted, and the logs simply stated:   </p>
<p><em>The Microsoft Secure Store Service application Secure Store Service failed to retrieve credentials. The error returned was 'Target application not found (application id: AWContactAdmins).'     <br /></em></p>
<p>It turns out the Application ID I specified was right. But the Secure Store Service App under which I created it was not associated with the SharePoint Web Application where I built my External List. </p>
<p><strong>The fix</strong>: I had more than one Secured Store Application Configured, one of which was already associated with the Web Application hosting my external list. So I just re-created the Target Application under the corresponding secured store. </p>
<p>Go to <a title="http://blog.rafelo.com/2010/03/bcs-external-list-error-unable-to.html" href="http://blog.rafelo.com/2010/03/bcs-external-list-error-unable-to.html">http://blog.rafelo.com/2010/03/bcs-external-list-error-unable-to.html</a> for more information and to view the original post. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.sptechdives.com/?feed=rss2&amp;p=262</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>(BCS) Business Connectivity Services Team Blog</title>
		<link>http://www.sptechdives.com/?p=258</link>
		<comments>http://www.sptechdives.com/?p=258#comments</comments>
		<pubDate>Wed, 03 Mar 2010 19:54:24 +0000</pubDate>
		<dc:creator>Rafael Perez</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[BCS]]></category>
		<category><![CDATA[Reference]]></category>

		<guid isPermaLink="false">http://www.sptechdives.com/?p=258</guid>
		<description><![CDATA[Looking for a good source of technical information on SharePoint 2010 Business Connectivity Services. Check out the Business Connectivity Services Team blog at http://blogs.msdn.com/bcs/&#160;
del.icio.us Tags: SharePoint 2010,Business Connectivity Services,BCS
Technorati Tags: SharePoint 2010,Business Connectivity Services,BCS
Cross Post from: http://blog.rafelo.com/2010/03/bcs-business-connectivity-services-team.html
]]></description>
			<content:encoded><![CDATA[<p>Looking for a good source of technical information on SharePoint 2010 Business Connectivity Services. Check out the Business Connectivity Services Team blog at <a title="http://blogs.msdn.com/bcs/" href="http://blogs.msdn.com/bcs/">http://blogs.msdn.com/bcs/</a>&#160;</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:0fd93596-8416-4f49-9232-cdd57c06d782" class="wlWriterEditableSmartContent">del.icio.us Tags: <a href="http://del.icio.us/popular/SharePoint+2010" rel="tag">SharePoint 2010</a>,<a href="http://del.icio.us/popular/Business+Connectivity+Services" rel="tag">Business Connectivity Services</a>,<a href="http://del.icio.us/popular/BCS" rel="tag">BCS</a></div>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:4f2ee784-0000-48bc-a23d-a23c5f275765" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/SharePoint+2010" rel="tag">SharePoint 2010</a>,<a href="http://technorati.com/tags/Business+Connectivity+Services" rel="tag">Business Connectivity Services</a>,<a href="http://technorati.com/tags/BCS" rel="tag">BCS</a></div>
<p>Cross Post from: <a title="http://blog.rafelo.com/2010/03/bcs-business-connectivity-services-team.html" href="http://blog.rafelo.com/2010/03/bcs-business-connectivity-services-team.html">http://blog.rafelo.com/2010/03/bcs-business-connectivity-services-team.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sptechdives.com/?feed=rss2&amp;p=258</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How-To Video: Changing Application Pool Accounts in SharePoint 2010</title>
		<link>http://www.sptechdives.com/?p=257</link>
		<comments>http://www.sptechdives.com/?p=257#comments</comments>
		<pubDate>Mon, 01 Mar 2010 20:50:25 +0000</pubDate>
		<dc:creator>Rafael Perez</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.sptechdives.com/?p=257</guid>
		<description><![CDATA[Yet another cool feature in SharePoint 2010 is the “Managed Accounts” concept. Once configured SharePoint can automatically reset service account passwords on a schedule, detect imminent password expirations and notify an administrator, and automatically propagate service account changes to all of the servers in the farm. 
Check out my latest blog posting with a step [...]]]></description>
			<content:encoded><![CDATA[<p>Yet another cool feature in SharePoint 2010 is the “Managed Accounts” concept. Once configured SharePoint can automatically reset service account passwords on a schedule, detect imminent password expirations and notify an administrator, and automatically propagate service account changes to all of the servers in the farm. </p>
<p><a href="http://blog.rafelo.com/2010/03/how-to-video-change-application-pool.html">Check out my latest blog posting with a step by step how-to video on the subject.</a>&#160; </p>
<p>Additional information from TechNet at: <a href="http://technet.microsoft.com/en-us/library/ee428296(office.14).aspx">Plan automatic password change (SharePoint Foundation)</a></p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:17bc6cab-af52-47db-8d2a-9655e09907c6" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/SharePoint+2010" rel="tag">SharePoint 2010</a>,<a href="http://technorati.com/tags/SP2010" rel="tag">SP2010</a>,<a href="http://technorati.com/tags/Service+Accounts" rel="tag">Service Accounts</a>,<a href="http://technorati.com/tags/Administration" rel="tag">Administration</a></div>
<p> 
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:fcbd6147-6979-4ea2-a304-b76c47af28e4" class="wlWriterEditableSmartContent">del.icio.us Tags: <a href="http://del.icio.us/popular/SharePoint+2010" rel="tag">SharePoint 2010</a>,<a href="http://del.icio.us/popular/SP2010" rel="tag">SP2010</a>,<a href="http://del.icio.us/popular/Service+Accounts" rel="tag">Service Accounts</a>,<a href="http://del.icio.us/popular/Administration" rel="tag">Administration</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.sptechdives.com/?feed=rss2&amp;p=257</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint Tech Dive February Presentation &#8211; Customizing the People Search Results</title>
		<link>http://www.sptechdives.com/?p=255</link>
		<comments>http://www.sptechdives.com/?p=255#comments</comments>
		<pubDate>Wed, 17 Feb 2010 02:55:52 +0000</pubDate>
		<dc:creator>Rafael Perez</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[SharePoint 2007]]></category>

		<guid isPermaLink="false">http://www.sptechdives.com/?p=255</guid>
		<description><![CDATA[I’ve uploaded a copy of the this months Presentation to http://www.sptechdives.com/wp-content/uploads/2010/02/PeopleSearchResultsCustomization.ppt . Thanks to everyone who attended. Details on next months SharePoint Tech Dive coming soon.
]]></description>
			<content:encoded><![CDATA[<p>I’ve uploaded a copy of the this months Presentation to <a title="http://www.sptechdives.com/wp-content/uploads/2010/02/PeopleSearchResultsCustomization.ppt" href="http://www.sptechdives.com/wp-content/uploads/2010/02/PeopleSearchResultsCustomization.ppt">http://www.sptechdives.com/wp-content/uploads/2010/02/PeopleSearchResultsCustomization.ppt</a> . Thanks to everyone who attended. Details on next months SharePoint Tech Dive coming soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sptechdives.com/?feed=rss2&amp;p=255</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Step by Step Video: SharePoint 2010 External Content Type (and List) with SPD and BCS</title>
		<link>http://www.sptechdives.com/?p=253</link>
		<comments>http://www.sptechdives.com/?p=253#comments</comments>
		<pubDate>Wed, 17 Feb 2010 02:44:13 +0000</pubDate>
		<dc:creator>Rafael Perez</dc:creator>
				<category><![CDATA[BCS]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[External Content Type]]></category>
		<category><![CDATA[SP2010]]></category>

		<guid isPermaLink="false">http://www.sptechdives.com/?p=253</guid>
		<description><![CDATA[Just posted at http://blog.rafelo.com/2010/02/step-by-step-video-sharepoint-2010.html
]]></description>
			<content:encoded><![CDATA[<p>Just posted at <a title="http://blog.rafelo.com/2010/02/step-by-step-video-sharepoint-2010.html" href="http://blog.rafelo.com/2010/02/step-by-step-video-sharepoint-2010.html">http://blog.rafelo.com/2010/02/step-by-step-video-sharepoint-2010.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sptechdives.com/?feed=rss2&amp;p=253</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
