<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Blog for SharePoint Hunter</title>
	<atom:link href="http://lovedjohnysmith.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://lovedjohnysmith.wordpress.com</link>
	<description>A (un)managed bag of ideas, tricks, gripes about New Emerging Technologies</description>
	<lastBuildDate>Thu, 03 May 2012 17:36:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='lovedjohnysmith.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Blog for SharePoint Hunter</title>
		<link>http://lovedjohnysmith.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://lovedjohnysmith.wordpress.com/osd.xml" title="Blog for SharePoint Hunter" />
	<atom:link rel='hub' href='http://lovedjohnysmith.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Site usage statistics out of sync &#8211; SharePoint</title>
		<link>http://lovedjohnysmith.wordpress.com/2012/05/03/site-usage-statistics-out-of-sync-sharepoint/</link>
		<comments>http://lovedjohnysmith.wordpress.com/2012/05/03/site-usage-statistics-out-of-sync-sharepoint/#comments</comments>
		<pubDate>Thu, 03 May 2012 13:57:59 +0000</pubDate>
		<dc:creator>Johnson</dc:creator>
				<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://lovedjohnysmith.wordpress.com/?p=129</guid>
		<description><![CDATA[Last week we had a peculiar issue on the SharePoint GUI(storman.aspx) which provides the information about Storage Space Allocation. The issue is, Storman.aspx(Storage Space Allocation) file was showing more than 100GB used space which is the subjected sitecollection had never reached to 100GB. We had check the database sizes(.mdf &#38; .ldf) and those sizes are [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lovedjohnysmith.wordpress.com&amp;blog=917501&amp;post=129&amp;subd=lovedjohnysmith&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Last week we had a peculiar issue on the SharePoint GUI(storman.aspx) which provides the information about Storage Space Allocation. The issue is, Storman.aspx(Storage Space Allocation) file was showing more than 100GB used space which is the subjected sitecollection had never reached to 100GB. We had check the database sizes(.mdf &amp; .ldf) and those sizes are not even close to 100GB. Finally, we had concluded that there is some bug in the GUI or this usage statistics out of sync.</p>
<p>I end-up in creating the PowerShell script (as shown in below) to re-sync the usage statistics using RecalculateStorageUsed() Method.</p>
<p>foreach ($spsite in Get-SPSite -url *) {<br />
$oStorage = $spsite.SPBase.Usage.Storage<br />
Write-Host Old Storge: $oStorage<br />
$spsite.SPBase.RecalculateStorageUsed()<br />
$spsite.SPBase.Dispose()<br />
$tSPSite = $spsite.GetSPObject()<br />
$nStorage = $tSPSite.Usage.Storage<br />
Write-Host $tSPSite.Url Updated from $oStorage to $nStorage<br />
$tSPSite.Dispose()<br />
}</p>
<p>Also, we could have use Gary Lapointe&#8217;s STSADM extension &#8212; which has gl-recalculateusage STSADM command to sync the site usage statistics on SharePoint.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lovedjohnysmith.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lovedjohnysmith.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lovedjohnysmith.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lovedjohnysmith.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lovedjohnysmith.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lovedjohnysmith.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lovedjohnysmith.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lovedjohnysmith.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lovedjohnysmith.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lovedjohnysmith.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lovedjohnysmith.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lovedjohnysmith.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lovedjohnysmith.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lovedjohnysmith.wordpress.com/129/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lovedjohnysmith.wordpress.com&amp;blog=917501&amp;post=129&amp;subd=lovedjohnysmith&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lovedjohnysmith.wordpress.com/2012/05/03/site-usage-statistics-out-of-sync-sharepoint/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/aee329d4796150f09beb7042c1859162?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lovedjohnysmith</media:title>
		</media:content>
	</item>
		<item>
		<title>Info: SSRS in SharePoint Integration Mode vs Native Mode</title>
		<link>http://lovedjohnysmith.wordpress.com/2012/02/24/info-ssrs-in-sharepoint-integration-mode-vs-native-mode/</link>
		<comments>http://lovedjohnysmith.wordpress.com/2012/02/24/info-ssrs-in-sharepoint-integration-mode-vs-native-mode/#comments</comments>
		<pubDate>Fri, 24 Feb 2012 17:11:28 +0000</pubDate>
		<dc:creator>Johnson</dc:creator>
				<category><![CDATA[Reporting Services]]></category>
		<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://lovedjohnysmith.wordpress.com/?p=126</guid>
		<description><![CDATA[Courtesy: http://msdn.microsoft.com SQL Reporting Services in SharePoint Integration Mode When you integrate a report server with an instance of a SharePoint product, items and properties are stored in the SharePoint content databases. This provides a deeper level of integration between the server technologies that effects how content is stored, secured, and accessed. Storing report items and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lovedjohnysmith.wordpress.com&amp;blog=917501&amp;post=126&amp;subd=lovedjohnysmith&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Courtesy: <a href="http://msdn.microsoft.com/">http://msdn.microsoft.com</a></p>
<p><strong><span style="text-decoration:underline;">SQL Reporting Services in SharePoint Integration Mode</span></strong></p>
<p>When you integrate a report server with an instance of a SharePoint product, items and properties are stored in the SharePoint content databases. This provides a deeper level of integration between the server technologies that effects how content is stored, secured, and accessed.</p>
<p>Storing report items and properties in SharePoint content databases allows you to browse SharePoint libraries for report server content types, secure items using the same permission levels and authentication provider that controls access to other business documents hosted on a SharePoint site, use the collaboration and document management features to check reports in and out for modification, use alerts to find out if an item has changed, and embed or customize the Report Viewer Web part on pages and sites within the application. If you have sufficient permissions within a SharePoint site, you can also generate report models from shared data sources and use Report Builder to create reports.</p>
<p>The report server continues to provide all data processing, rendering, and delivery. It also supports all scheduled report processing for snapshots and report history. The following diagram shows the server components together:</p>
<p><img title="architecture diagram" src="http://i.msdn.microsoft.com/dynimg/IC150703.gif" alt="architecture diagram" /></p>
<p><strong><span style="text-decoration:underline;">SQL Reporting Services in Native Mode</span></strong></p>
<p>Reports are being hosted in a separate server as Native Mode and developers are adding the reports URL in to the SharePoint Pages. When we open a report by clicking the link in SharePoint page, SharePoint redirected to the Report Server URL. Thus, report server is running as an isolated server from the SharePoint.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lovedjohnysmith.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lovedjohnysmith.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lovedjohnysmith.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lovedjohnysmith.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lovedjohnysmith.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lovedjohnysmith.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lovedjohnysmith.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lovedjohnysmith.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lovedjohnysmith.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lovedjohnysmith.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lovedjohnysmith.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lovedjohnysmith.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lovedjohnysmith.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lovedjohnysmith.wordpress.com/126/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lovedjohnysmith.wordpress.com&amp;blog=917501&amp;post=126&amp;subd=lovedjohnysmith&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lovedjohnysmith.wordpress.com/2012/02/24/info-ssrs-in-sharepoint-integration-mode-vs-native-mode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/aee329d4796150f09beb7042c1859162?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lovedjohnysmith</media:title>
		</media:content>

		<media:content url="http://i.msdn.microsoft.com/dynimg/IC150703.gif" medium="image">
			<media:title type="html">architecture diagram</media:title>
		</media:content>
	</item>
		<item>
		<title>Windows PowerShell Command Builder for SharePoint 2010</title>
		<link>http://lovedjohnysmith.wordpress.com/2012/02/08/windows-powershell-command-builder-for-sharepoint-2010/</link>
		<comments>http://lovedjohnysmith.wordpress.com/2012/02/08/windows-powershell-command-builder-for-sharepoint-2010/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 16:55:39 +0000</pubDate>
		<dc:creator>Johnson</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://lovedjohnysmith.wordpress.com/?p=124</guid>
		<description><![CDATA[Microsoft has released a wonderful tool Powershell Command Builder to build a cmdlet. Nice and Cool! Click to open the Windows PowerShell Command Builder in a new browser window. SharePoint 2010 Resource Centers: http://technet.microsoft.com/en-us/sharepoint/ff465365<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lovedjohnysmith.wordpress.com&amp;blog=917501&amp;post=124&amp;subd=lovedjohnysmith&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Microsoft has released a wonderful tool Powershell Command Builder to build a cmdlet. Nice and Cool!</p>
<p>Click to open the <a href="http://www.microsoft.com/resources/TechNet/en-us/Office/media/WindowsPowerShell/WindowsPowerShellCommandBuilder.html">Windows PowerShell Command Builder</a> in a new browser window.</p>
<p>SharePoint 2010 Resource Centers: <a href="http://technet.microsoft.com/en-us/sharepoint/ff465365">http://technet.microsoft.com/en-us/sharepoint/ff465365</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lovedjohnysmith.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lovedjohnysmith.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lovedjohnysmith.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lovedjohnysmith.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lovedjohnysmith.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lovedjohnysmith.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lovedjohnysmith.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lovedjohnysmith.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lovedjohnysmith.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lovedjohnysmith.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lovedjohnysmith.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lovedjohnysmith.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lovedjohnysmith.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lovedjohnysmith.wordpress.com/124/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lovedjohnysmith.wordpress.com&amp;blog=917501&amp;post=124&amp;subd=lovedjohnysmith&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lovedjohnysmith.wordpress.com/2012/02/08/windows-powershell-command-builder-for-sharepoint-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/aee329d4796150f09beb7042c1859162?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lovedjohnysmith</media:title>
		</media:content>
	</item>
		<item>
		<title>Extract documents from the SharePoint farm</title>
		<link>http://lovedjohnysmith.wordpress.com/2011/12/01/extract-documents-from-the-sharepoint-farm/</link>
		<comments>http://lovedjohnysmith.wordpress.com/2011/12/01/extract-documents-from-the-sharepoint-farm/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 21:59:20 +0000</pubDate>
		<dc:creator>Johnson</dc:creator>
				<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://lovedjohnysmith.wordpress.com/?p=119</guid>
		<description><![CDATA[I have been asked to extract all the files from one of the SharePoint farm and put into the share drive where users can access it. I was looking around on the web and we found an article, but SQL query is incorrect in this article as Content Column is not resides in the DOCS [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lovedjohnysmith.wordpress.com&amp;blog=917501&amp;post=119&amp;subd=lovedjohnysmith&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have been asked to extract all the files from one of the SharePoint farm and put into the share drive where users can access it. I was looking around on the web and we found an <a>article</a>, but SQL query is incorrect in this article as Content Column is not resides in the DOCS Data-view. So, I end-up in modifying this script with creating an INNER JOIN between DOCS and DOCSTREAMS to get the binary content for the files. I have attached here is the code and screenshot of it.</p>
<p><img src="http://lovedjohnysmith.files.wordpress.com/2011/12/code.png?w=645" alt="code" border="0" /></p>
<p><a href="http://lovedjohnysmith.files.wordpress.com/2011/12/extractdocument.pdf">Download the code here</a></p>
<p>Hope this helps.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lovedjohnysmith.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lovedjohnysmith.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lovedjohnysmith.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lovedjohnysmith.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lovedjohnysmith.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lovedjohnysmith.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lovedjohnysmith.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lovedjohnysmith.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lovedjohnysmith.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lovedjohnysmith.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lovedjohnysmith.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lovedjohnysmith.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lovedjohnysmith.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lovedjohnysmith.wordpress.com/119/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lovedjohnysmith.wordpress.com&amp;blog=917501&amp;post=119&amp;subd=lovedjohnysmith&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lovedjohnysmith.wordpress.com/2011/12/01/extract-documents-from-the-sharepoint-farm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/aee329d4796150f09beb7042c1859162?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lovedjohnysmith</media:title>
		</media:content>

		<media:content url="http://lovedjohnysmith.files.wordpress.com/2011/12/code.png?w=645" medium="image">
			<media:title type="html">code</media:title>
		</media:content>
	</item>
		<item>
		<title>SharePoint Diagnostics Studio Tool</title>
		<link>http://lovedjohnysmith.wordpress.com/2011/10/06/sharepoint-diagnostics-studio-tool/</link>
		<comments>http://lovedjohnysmith.wordpress.com/2011/10/06/sharepoint-diagnostics-studio-tool/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 18:00:25 +0000</pubDate>
		<dc:creator>Johnson</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://lovedjohnysmith.wordpress.com/?p=113</guid>
		<description><![CDATA[Microsoft has released a latest version of Diagnostics Tool for SharePoint. This tool was mentioned in all the IT professionals sessions by presenters. It is pretty interesting!!! For more information, http://sharepoint.microsoft.com/blog/Pages/BlogPost.aspx?pID=971<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lovedjohnysmith.wordpress.com&amp;blog=917501&amp;post=113&amp;subd=lovedjohnysmith&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Microsoft has released a latest version of Diagnostics Tool for SharePoint. This tool was mentioned in all the IT professionals sessions by presenters. It is pretty interesting!!!</p>
<p>For more information, http://sharepoint.microsoft.com/blog/Pages/BlogPost.aspx?pID=971</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lovedjohnysmith.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lovedjohnysmith.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lovedjohnysmith.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lovedjohnysmith.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lovedjohnysmith.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lovedjohnysmith.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lovedjohnysmith.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lovedjohnysmith.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lovedjohnysmith.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lovedjohnysmith.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lovedjohnysmith.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lovedjohnysmith.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lovedjohnysmith.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lovedjohnysmith.wordpress.com/113/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lovedjohnysmith.wordpress.com&amp;blog=917501&amp;post=113&amp;subd=lovedjohnysmith&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lovedjohnysmith.wordpress.com/2011/10/06/sharepoint-diagnostics-studio-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/aee329d4796150f09beb7042c1859162?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lovedjohnysmith</media:title>
		</media:content>
	</item>
		<item>
		<title>E-mail notifications for alerts are not sent when content in a migrated site</title>
		<link>http://lovedjohnysmith.wordpress.com/2011/09/28/e-mail-notifications-for-alerts-are-not-sent-when-content-in-a-migrated-site/</link>
		<comments>http://lovedjohnysmith.wordpress.com/2011/09/28/e-mail-notifications-for-alerts-are-not-sent-when-content-in-a-migrated-site/#comments</comments>
		<pubDate>Wed, 28 Sep 2011 19:38:09 +0000</pubDate>
		<dc:creator>Johnson</dc:creator>
				<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://lovedjohnysmith.wordpress.com/?p=111</guid>
		<description><![CDATA[[Courtesy: Microsoft Knowledge Base Article] As mentioned in the subjected above, we have encountered the issue that existing alerts were not firing after the site migration. I digged into the Micrsoft Knowledge Base and I found out the below support article. http://support.microsoft.com/kb/936759 There is an awesome tool for SharePoint administrator to update these existing alerts.The [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lovedjohnysmith.wordpress.com&amp;blog=917501&amp;post=111&amp;subd=lovedjohnysmith&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>[Courtesy: Microsoft Knowledge Base Article]</p>
<p>As mentioned in the subjected above, we have encountered the issue that existing alerts were not firing after the site migration. I digged into the Micrsoft Knowledge Base and I found out the below support article.</p>
<p>http://support.microsoft.com/kb/936759</p>
<p>There is an awesome tool for SharePoint administrator to update these existing alerts.The new <strong>stsadm -o updatealert </strong>command was released in the SharePoint Administration Toolkit. For more information and to download the toolkit, visit one of the following Microsoft Web sites, depending on the version of Windows SharePoint Services that you are running.</p>
<h4 id="tocHeadRef">SharePoint Administration Toolkit x64</h4>
<div><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=F8EEA8F0-FA30-4C10-ABC9-217EEACEC9CE&amp;displaylang=en">http://www.microsoft.com/downloads/details.aspx?FamilyId=F8EEA8F0-FA30-4C10-ABC9-217EEACEC9CE&amp;displaylang=en</a></div>
<h4 id="tocHeadRef">SharePoint Administration Toolkit x86</h4>
<div><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=263CD480-F6EB-4FA3-9F2E-2D47618505F2&amp;displaylang=en">http://www.microsoft.com/downloads/details.aspx?FamilyId=263CD480-F6EB-4FA3-9F2E-2D47618505F2&amp;displaylang=en </a></div>
<p>For more information, see the &#8220;Microsoft SharePoint Administration Toolkit&#8221; white paper. To do this, visit the following Microsoft Web site:</p>
<div><a href="http://go.microsoft.com/fwlink/?LinkId=117212&amp;clcid=0x409">http://go.microsoft.com/fwlink/?LinkId=117212&amp;clcid=0&#215;409</a></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Enjoy!!!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lovedjohnysmith.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lovedjohnysmith.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lovedjohnysmith.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lovedjohnysmith.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lovedjohnysmith.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lovedjohnysmith.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lovedjohnysmith.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lovedjohnysmith.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lovedjohnysmith.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lovedjohnysmith.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lovedjohnysmith.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lovedjohnysmith.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lovedjohnysmith.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lovedjohnysmith.wordpress.com/111/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lovedjohnysmith.wordpress.com&amp;blog=917501&amp;post=111&amp;subd=lovedjohnysmith&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lovedjohnysmith.wordpress.com/2011/09/28/e-mail-notifications-for-alerts-are-not-sent-when-content-in-a-migrated-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/aee329d4796150f09beb7042c1859162?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lovedjohnysmith</media:title>
		</media:content>
	</item>
		<item>
		<title>URL Redirection after the Migration &#8211; SharePoint</title>
		<link>http://lovedjohnysmith.wordpress.com/2011/09/28/url-redirection-after-the-migration-sharepoint/</link>
		<comments>http://lovedjohnysmith.wordpress.com/2011/09/28/url-redirection-after-the-migration-sharepoint/#comments</comments>
		<pubDate>Wed, 28 Sep 2011 14:52:48 +0000</pubDate>
		<dc:creator>Johnson</dc:creator>
				<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://lovedjohnysmith.wordpress.com/?p=108</guid>
		<description><![CDATA[When we done with the migration work from one environment to another environment, obviously stake holder would ask the SharePoint administrator to provide the URL redirection mechanism as users have been accessing the old URL from the favorites, outlook, and shortcuts. There are multiple options for SP administrator to achieve this task like creating URLMapping [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lovedjohnysmith.wordpress.com&amp;blog=917501&amp;post=108&amp;subd=lovedjohnysmith&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When we done with the migration work from one environment to another environment, obviously stake holder would ask the SharePoint administrator to provide the URL redirection mechanism as users have been accessing the old URL from the favorites, outlook, and shortcuts.</p>
<p>There are multiple options for SP administrator to achieve this task like creating URLMapping element in the web.config, or writing URL Rewriting using HTTP Modules, etc. But these methods are time consuming and we can not test code as we are working on the production migration. So, the only option is to change the redirection URL at the IIS level. Below is the workable and quick solution for this task.</p>
<p><span style="color:#ff0000;">Just set &#8220;The exact URL entered above&#8221; and &#8220;A permanent redirection for this resource&#8221; on the IIS and enter your fully qualified host name entry as follows</span></p>
<p><span style="color:#0000ff;"><a href="http://bg.int.kbr.com$s$q/"><span style="color:#0000ff;">http://contoso.corp.com$S$Q</span></a></span></p>
<p><span style="color:#ff0000;">The <strong>$S$Q</strong> will maintain all URLs on our other host names that enter.</span></p>
<p><span style="color:#ff0000;">This would redirect all your <span style="color:#0000ff;">http://contoso.external.com/*</span> HTTP calls to <span style="color:#0000ff;"><a href="http://bg.int.kbr.com$s$q/"><span style="color:#0000ff;">http://contoso.corp.com</span></a>/*</span>.</span></p>
<p>How simple is it right? <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lovedjohnysmith.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lovedjohnysmith.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lovedjohnysmith.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lovedjohnysmith.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lovedjohnysmith.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lovedjohnysmith.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lovedjohnysmith.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lovedjohnysmith.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lovedjohnysmith.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lovedjohnysmith.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lovedjohnysmith.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lovedjohnysmith.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lovedjohnysmith.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lovedjohnysmith.wordpress.com/108/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lovedjohnysmith.wordpress.com&amp;blog=917501&amp;post=108&amp;subd=lovedjohnysmith&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lovedjohnysmith.wordpress.com/2011/09/28/url-redirection-after-the-migration-sharepoint/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/aee329d4796150f09beb7042c1859162?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lovedjohnysmith</media:title>
		</media:content>
	</item>
		<item>
		<title>Retrieve Absoulte URLs in the SharePoint Site Navigation</title>
		<link>http://lovedjohnysmith.wordpress.com/2011/09/19/retrieve-absoulte-urls-in-the-sharepoint-site-navigation/</link>
		<comments>http://lovedjohnysmith.wordpress.com/2011/09/19/retrieve-absoulte-urls-in-the-sharepoint-site-navigation/#comments</comments>
		<pubDate>Mon, 19 Sep 2011 18:07:00 +0000</pubDate>
		<dc:creator>Johnson</dc:creator>
				<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://lovedjohnysmith.wordpress.com/?p=104</guid>
		<description><![CDATA[SharePoint users would love to use the hard-coded URLs in the SharePoint navigation. But they dont know what would be the impact while migrating site from one place to another and also it is really hard to find and replace these URLs as it&#8217;s time consuming. SP administrator should have to use some tool to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lovedjohnysmith.wordpress.com&amp;blog=917501&amp;post=104&amp;subd=lovedjohnysmith&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>SharePoint users would love to use the hard-coded URLs in the SharePoint navigation. But they dont know what would be the impact while migrating site from one place to another and also it is really hard to find and replace these URLs as it&#8217;s time consuming.</p>
<p>SP administrator should have to use some tool to find out these hard-coded urls and change it manually. The below SQL query would point out the hard-coded URLs in each content databases. Also, I heard some webparts are available at the CodePlex.com to find and replace these hard-coded URLs.</p>
<p>use [CONTENT_DATABASE_NAME]<br />
go</p>
<p>select webs.title as SiteName, navnodes.url as AbsoulteUrl, webs.fullurl as location<br />
from navnodes<br />
join webs on navnodes.webid = webs.id<br />
where navnodes.url like &#8216;%http://%&#8217;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lovedjohnysmith.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lovedjohnysmith.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lovedjohnysmith.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lovedjohnysmith.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lovedjohnysmith.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lovedjohnysmith.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lovedjohnysmith.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lovedjohnysmith.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lovedjohnysmith.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lovedjohnysmith.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lovedjohnysmith.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lovedjohnysmith.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lovedjohnysmith.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lovedjohnysmith.wordpress.com/104/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lovedjohnysmith.wordpress.com&amp;blog=917501&amp;post=104&amp;subd=lovedjohnysmith&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lovedjohnysmith.wordpress.com/2011/09/19/retrieve-absoulte-urls-in-the-sharepoint-site-navigation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/aee329d4796150f09beb7042c1859162?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lovedjohnysmith</media:title>
		</media:content>
	</item>
		<item>
		<title>External user access denied &#8211; SharePoint 2007</title>
		<link>http://lovedjohnysmith.wordpress.com/2011/07/01/external-user-access-denied-sharepoint-2007/</link>
		<comments>http://lovedjohnysmith.wordpress.com/2011/07/01/external-user-access-denied-sharepoint-2007/#comments</comments>
		<pubDate>Fri, 01 Jul 2011 15:50:40 +0000</pubDate>
		<dc:creator>Johnson</dc:creator>
				<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://lovedjohnysmith.wordpress.com/?p=98</guid>
		<description><![CDATA[SUMMARY: It is a real hard to understand the issue from user who is working remotely at client location. Normally, IT support folks used to setup a webex session to see what is happening in their machine to understand the issue. But this method would not apply for a user can not accept or share [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lovedjohnysmith.wordpress.com&amp;blog=917501&amp;post=98&amp;subd=lovedjohnysmith&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h3>SUMMARY:</h3>
<p>It is a real hard to understand the issue from user who is working remotely at client location. Normally, IT support folks used to setup a webex session to see what is happening in their machine to understand the issue. But this method would not apply for a user can not accept or share their desktop due their work environment restrictions.<br />
Only option is to share the screenshot between user computer and IT support professional. But IT support professional could not easily identify the root cause of an issue or troubleshoot the issue using screenshot of user desktop.</p>
<h3>CAUSE:</h3>
<p>I had an experience with external user with same situation as mentioned above. So we decided to gather the information in regards to external user getting access denied. We analyzed the various areas as shown in below.</p>
<p><img src="http://i.technet.microsoft.com/Cc964305.image005(en-us,TechNet.10).jpg" alt="" border="0" /></p>
<p>Things we gathered,<br />
1. User account setup is okay<br />
2. Her account works on Guest VLan on Corporate COE PC (IE7)<br />
3. User account works on IT Support Professional home internet (IE7)<br />
4. User account will not work on NAMSA PC (IE8)</p>
<p>So, it is clearly shows that IE8 is causing the issue.</p>
<h3>RESOLUTION:</h3>
<p>We advised them to make sure their Trusted Sites zone allows &#8216;Automatic login with current username and password&#8217;.<br />
Open IE, Tools -&gt; Internet Options -&gt; Security -&gt; Trusted Sites.<br />
1. Click &#8216;Sites&#8217; and make sure the URL is in there.<br />
2. Click &#8216;Custom Level&#8217;, scroll to the bottom and ensure &#8216;Automatic Logon with current user name and password&#8217; is selected.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lovedjohnysmith.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lovedjohnysmith.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lovedjohnysmith.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lovedjohnysmith.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lovedjohnysmith.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lovedjohnysmith.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lovedjohnysmith.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lovedjohnysmith.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lovedjohnysmith.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lovedjohnysmith.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lovedjohnysmith.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lovedjohnysmith.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lovedjohnysmith.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lovedjohnysmith.wordpress.com/98/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lovedjohnysmith.wordpress.com&amp;blog=917501&amp;post=98&amp;subd=lovedjohnysmith&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lovedjohnysmith.wordpress.com/2011/07/01/external-user-access-denied-sharepoint-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/aee329d4796150f09beb7042c1859162?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lovedjohnysmith</media:title>
		</media:content>

		<media:content url="http://i.technet.microsoft.com/Cc964305.image005(en-us,TechNet.10).jpg" medium="image" />
	</item>
		<item>
		<title>DATASHEET ISSUE WITH SHAREPOINT</title>
		<link>http://lovedjohnysmith.wordpress.com/2011/07/01/datasheet-issue-with-sharepoint/</link>
		<comments>http://lovedjohnysmith.wordpress.com/2011/07/01/datasheet-issue-with-sharepoint/#comments</comments>
		<pubDate>Fri, 01 Jul 2011 15:34:52 +0000</pubDate>
		<dc:creator>Johnson</dc:creator>
				<category><![CDATA[Office Integration]]></category>
		<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://lovedjohnysmith.wordpress.com/?p=95</guid>
		<description><![CDATA[SYMPTOMS: When attempting to create/open a document in a SharePoint list or view a list in Datasheet view, you receive one of the messages below: 1. The list cannot be displayed in Datasheet view for one or more of the following reasons: - A datasheet component compatible with Windows SharePoint Services is not installed. - [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lovedjohnysmith.wordpress.com&amp;blog=917501&amp;post=95&amp;subd=lovedjohnysmith&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h3><strong>SYMPTOMS:</strong></h3>
<p>When attempting to create/open a document in a SharePoint list or view a list in Datasheet view, you receive one of the messages below:</p>
<pre><em><span style="color:#ff0000;">1. The list cannot be displayed in Datasheet view for one or more of 
the following reasons:</span></em>
<em><span style="color:#ff0000;"> - A datasheet component compatible with Windows SharePoint Services 
is not installed.</span></em>
<em><span style="color:#ff0000;"> - Your Web Browser does not support ActiveX controls.</span></em>
<em><span style="color:#ff0000;"> - Support for ActiveX controls is disabled.</span></em>
-OR-
<em> <strong><span style="color:#ff0000;">The list is displayed in Standard view. It cannot be displayed in 
Datasheet view for one or more of the following reasons: A datasheet 
component compatible with Microsoft SharePoint Foundation is not 
installed, your browser does not support ActiveX controls, a component is 
not properly configured for 32-bit or 64-bit support, or support for 
ActiveX controls is disabled.</span> <span style="color:#ff0000;">2. The document could not be created. The required application 
may not be installed properly, or the template for this document library 
cannot be opened.</span> <span style="color:#ff0000;">3. The document could not be opened for editing. A Windows SharePoint 
Services compatible application could not be found to edit the document.

</span></strong></em></pre>
<div>
<h3>CAUSE:</h3>
<p>There are several possible causes for any of the error message listed above.  Some possible causes are;</p>
<p>1) Incompatibility issues specific to the version of Microsoft Office installed on your computer,</p>
<p>2) The SharePoint Support component or Windows SharePoint Services Support (as appropriate to your version of MS Office) is not installed on your computer,</p>
<p>3) The Owssupp.dll file is not registered correctly in Microsoft Windows and/or is corrupt due to installation of Office 2003 professional, and any of Office 2007 Products</p>
<p>4) You are using Microsoft Office 2010 and do not have a 64-bit version of ActiveX Control installed on your computer.</p>
<h3>RESOLUTION:</h3>
<p><em>It is recommended that you consult your Site Administrator before performing any of the resolution options listed below. </em></p>
<p><em>Repair a Corrupt Owssupp.dll:</em> Running a Microsoft Office diagnostic tool can repair a corrupt .DLL file.  Below are the instructions to run the diagnostic tool.</p>
<p>1. Navigate to C:\Program Files\Microsoft Office\Office12<br />
2. Delete the <strong>OWSSUPP.DLL</strong> file from this directory.<br />
3. Click Start.<br />
4. Click All Programs.<br />
5. Click Microsoft Office.<br />
6. Click Microsoft Office Tools.<br />
7. Run Microsoft Office Diagnostic.</p>
<p>8. Repair office installation using below instructions</p>
<p><em>If Office 2003 is installed on the computer:</em><br />
1. Click <strong>Start</strong>, and then click <strong>Control Panel</strong>.<br />
2. Click <strong>Add or Remove Programs</strong>.<br />
3. In the list of currently installed programs, click <strong>Microsoft Office 2003</strong>, and then click <strong>Change</strong>.<br />
4. Click <strong>Add or Remove Features</strong>, and then click <strong>Next</strong>.<br />
5. Click to select the <strong>Choose advanced customization of application</strong> check box, and then click <strong>Next</strong>.<br />
6. In the <strong>Choose update options for applications and tools</strong> box, expand <strong>Office Tools</strong>, click the down arrow next to <strong>Windows SharePoint Services Support</strong>, and then click <strong>Run from My Computer</strong>.<br />
7. Click <strong>Update</strong>.</p>
</div>
<pre><em><strong><span style="color:#ff0000;">
</span></strong></em></pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lovedjohnysmith.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lovedjohnysmith.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lovedjohnysmith.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lovedjohnysmith.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lovedjohnysmith.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lovedjohnysmith.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lovedjohnysmith.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lovedjohnysmith.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lovedjohnysmith.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lovedjohnysmith.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lovedjohnysmith.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lovedjohnysmith.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lovedjohnysmith.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lovedjohnysmith.wordpress.com/95/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lovedjohnysmith.wordpress.com&amp;blog=917501&amp;post=95&amp;subd=lovedjohnysmith&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lovedjohnysmith.wordpress.com/2011/07/01/datasheet-issue-with-sharepoint/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/aee329d4796150f09beb7042c1859162?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lovedjohnysmith</media:title>
		</media:content>
	</item>
	</channel>
</rss>
