<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizNewsPad="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Keith Smith - My Blog : SharePoint</title>
  <link>https://www.KeithIT.com/</link>
  <description><![CDATA[This is an XML content feed of; Keith Smith - My Blog : Last 5 Blog Posts]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz NewsPad - All Rights Reserved.</copyright>
  <pubDate>Sun, 19 Apr 2026 11:29:26 +0000</pubDate>
  <lastBuildDate>Wed, 19 Apr 2017 21:13:20 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz NewsPad 3.04</generator>
  <ttl>30</ttl>
  <WebWizNewsPad:feedURL>https://www.KeithIT.com/rss-sharepoint_cat6.xml</WebWizNewsPad:feedURL>
  <image>
   <title><![CDATA[Keith Smith - My Blog : SharePoint]]></title>
   <url>https://www.KeithIT.com/images/keithsmith.png</url>
   <link>https://www.KeithIT.com/</link>
  </image>
  <item>
   <title><![CDATA[fix for pdf and browser - run from SharePoint Management Shell]]></title>
   <link>https://www.KeithIT.com/fix-for-pdf-and-browser-run-from-sharepoint-management-shell_post3049.html</link>
   <description>
    <![CDATA[<font size="3">Need to run PDF in the browser? Run the following in the sharepoint powershell<br /><br />$webApp = Get-SPWebApplication http://host.domain.org<br />If ($webApp.AllowedInlineDownloadedMimeTypes -notcontains "application/pdf")<br />{<br />&nbsp; Write-Host -ForegroundColor White "Adding Pdf MIME Type..."<br />&nbsp; $webApp.AllowedInlineDownloadedMimeTypes.Add("application/pdf")<br />&nbsp; $webApp.Update()<br />&nbsp; Write-Host -ForegroundColor White "Added and saved."<br />} Else {<br />&nbsp; Write-Host -ForegroundColor White "Pdf MIME type is already added."<br />}<br /><br /><br />Other commands that may fix it if the above doesn’t :<br /><br />Web Application level setting: Method 2<br />$webApp = Get-SPWebApplication http://intranet.domain<br />$webApp.BrowserFileHandling = "permissive"<br />$webApp.update()<br /><br /><br />Site Collection level<br />$site = get-spsite "http://intranet.domain/sites/somesite"<br />foreach ( $subsite in $site.allwebs ) <br />{ <br />&nbsp;foreach ($list in $subsite.Lists) <br />&nbsp;{ <br />&nbsp;&nbsp;if($list.browserfilehandling -eq "Strict") <br />&nbsp;&nbsp;{ <br />&nbsp;&nbsp;&nbsp;$list.browserfilehandling = "Permissive"; <br />&nbsp;&nbsp;&nbsp;$list.update(); <br />&nbsp;&nbsp;} <br />&nbsp;} <br />}<br /><br /><br />Site level ( SPWeb )<br />$web = Get-SPWeb "http://intranet.domain/sites/somesite/someweb"<br />foreach ($list in $web.Lists) <br />{ <br />&nbsp;if($list.browserfilehandling -eq "Strict") <br />&nbsp;{ <br />&nbsp;&nbsp;$list.browserfilehandling = "Permissive"; <br />&nbsp;&nbsp;$list.update(); <br />&nbsp;} <br />} <br /><br />List Level<br />$web= Get-SPWeb "http://intranet.domain/sites/somesite/someweb"<br />$list = $web.Lists&#091;"MyList"&#093; <br />if($list.browserfilehandling -eq "Strict") <br />{ <br />&nbsp;$list.browserfilehandling = "Permissive"; <br />&nbsp;$list.update(); <br />} <br /><br />-End<br /></font>]]>
   </description>
   <pubDate>Wed, 19 Apr 2017 21:13:20 +0000</pubDate>
   <guid isPermaLink="true">https://www.KeithIT.com/fix-for-pdf-and-browser-run-from-sharepoint-management-shell_post3049.html</guid>
   <WebWizNewsPad:pubDateISO>2017-04-19 21:13:20</WebWizNewsPad:pubDateISO>
  </item> 
  <item>
   <title><![CDATA[Turn on anonymous access for a site]]></title>
   <link>https://www.KeithIT.com/turn-on-anonymous-access-for-a-site_post3048.html</link>
   <description>
    <![CDATA[<font size="3">Turn on anonymous access for a site <br />&nbsp;&nbsp;&nbsp; •&nbsp;&nbsp;&nbsp; Open the site on which you want to turn on anonymous access. <br />&nbsp;&nbsp;&nbsp; •&nbsp;&nbsp;&nbsp; On the Site Actions menu, click Site Permissions. <br />&nbsp;&nbsp;&nbsp; •&nbsp;&nbsp;&nbsp; On the permissions page, click Anonymous Access. <br />&nbsp;&nbsp;&nbsp; •&nbsp;&nbsp;&nbsp; In the Anonymous Access dialog box, select the parts of your Web site that you want anonymous users to access, and then click OK.<br /><br />Turn on anonymous access for a list or library that uses unique permissions<br />Follow these steps only if you have turned on anonymous access for the site as described in the previous procedure and have granted access to either the entire site or only lists and libraries in step 4 above. <br />Also, make sure the list or library you want to work with uses unique permissions instead of inheriting permissions from its parent site.<br /><br />For more information about unique permissions, see Control access to a specific piece of content or, for basics, see What is uniquely secured content?<br /><br />&nbsp;&nbsp;&nbsp; •&nbsp;&nbsp;&nbsp; Browse to the list or library that uses unique permissions for which you want to enable anonymous access. <br />&nbsp;&nbsp;&nbsp; •&nbsp;&nbsp;&nbsp; Click the List tab on the List Tools menu (or the Library tab on the Library Tools menu). <br />&nbsp;&nbsp;&nbsp; •&nbsp;&nbsp;&nbsp; Click the List Permissions (or Library Permissions) button.<br />&nbsp;&nbsp;&nbsp; •&nbsp;&nbsp;&nbsp; On the Permissions Tools menu, click Anonymous Access. <br />&nbsp;&nbsp;&nbsp; •&nbsp;&nbsp;&nbsp; In the Anonymous Access dialog box, select the permissions that you want to grant to anonymous users for this list or library, and then click OK.<br /><br /><br />-End</font><br />]]>
   </description>
   <pubDate>Wed, 19 Apr 2017 21:07:28 +0000</pubDate>
   <guid isPermaLink="true">https://www.KeithIT.com/turn-on-anonymous-access-for-a-site_post3048.html</guid>
   <WebWizNewsPad:pubDateISO>2017-04-19 21:07:28</WebWizNewsPad:pubDateISO>
  </item> 
  <item>
   <title><![CDATA[an unhandled exception occurred in the silverlight application]]></title>
   <link>https://www.KeithIT.com/an-unhandled-exception-occurred-in-the-silverlight-application_post3046.html</link>
   <description>
    <![CDATA[<font size="3"><b>Problem</b><br />an unhandled exception occurred in the silverlight application<br /><br /><b>Solution</b><br />Just Enable the Security Validation in the central administration from Manage Web Applications --&gt; General Settings (from ribbon).<br /><br />Silverlight Application is unable to connect to the WCF endpoint configured by the product for enabling Client Object Model, if Security validation is set to Off.<br /><br /><br />-End</font><br />]]>
   </description>
   <pubDate>Wed, 19 Apr 2017 21:05:31 +0000</pubDate>
   <guid isPermaLink="true">https://www.KeithIT.com/an-unhandled-exception-occurred-in-the-silverlight-application_post3046.html</guid>
   <WebWizNewsPad:pubDateISO>2017-04-19 21:05:31</WebWizNewsPad:pubDateISO>
  </item> 
  <item>
   <title><![CDATA[Event ID 6398 and 5586]]></title>
   <link>https://www.KeithIT.com/event-id-6398-and-5586_post3045.html</link>
   <description>
    <![CDATA[<font size="3">Simple fix for Event ID 6398 and 5586<br /><br />Disable the Health Analysis Job (Daily, Microsoft SharePoint Foundation Timer, Any Server)&nbsp; in the central administration<br /><br />-End</font><br />]]>
   </description>
   <pubDate>Wed, 19 Apr 2017 21:04:10 +0000</pubDate>
   <guid isPermaLink="true">https://www.KeithIT.com/event-id-6398-and-5586_post3045.html</guid>
   <WebWizNewsPad:pubDateISO>2017-04-19 21:04:10</WebWizNewsPad:pubDateISO>
  </item> 
  <item>
   <title><![CDATA[Warning 1015- Failed to connect to server Error- 0x80070005]]></title>
   <link>https://www.KeithIT.com/warning-1015-failed-to-connect-to-server-error-0x80070005_post3044.html</link>
   <description>
    <![CDATA[<font size="3"><b>Problem </b><br /><br />On a daily basis, you see the following warning appear in the SharePoint server host's Application log:<br />Log Name:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Application<br />Source:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;MsiInstaller<br />Date:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#091;date&#093;<br />Event ID:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1015<br />Task Category: None<br />Level:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Warning<br />Keywords:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Classic<br />User:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#091;SharePoint farm account&#093;<br />Computer:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#091;a SharePoint Server host&#093; <br />Description:<br /><br />Failed to connect to server. Error: 0x80070005<br />Event Xml:<br /><event xmlns="http://schemas.microsoft.com/win/2004/08/events/event"><br />&nbsp;&nbsp;<system><br />&nbsp;&nbsp;&nbsp;&nbsp;<provider name="MsiInstaller"><br />&nbsp;&nbsp;&nbsp;&nbsp;<eventid qualifiers="0">1015</eventid><br />&nbsp;&nbsp;&nbsp;&nbsp;<level>3</level><br />&nbsp;&nbsp;&nbsp;&nbsp;<task>0</task><br />&nbsp;&nbsp;&nbsp;&nbsp;<keywords>0x80000000000000</keywords><br />&nbsp;&nbsp;&nbsp;&nbsp;<timecreated systemtime="..."><br />&nbsp;&nbsp;&nbsp;&nbsp;<eventrecordid>8607</eventrecordid><br />&nbsp;&nbsp;&nbsp;&nbsp;<channel>Application</channel><br />&nbsp;&nbsp;&nbsp;&nbsp;<computer>&#091;a SharePoint Server host&#093;</computer><br />&nbsp;&nbsp;&nbsp;&nbsp;<security userid="..."><br />&nbsp;&nbsp;</security></timecreated></provider></system><br />&nbsp;&nbsp;<eventdata><br />&nbsp;&nbsp;&nbsp;&nbsp;<data>0x80070005</data><br />&nbsp;&nbsp;&nbsp;&nbsp;<data>(NULL)</data><br />&nbsp;&nbsp;&nbsp;&nbsp;<data>(NULL)</data><br />&nbsp;&nbsp;&nbsp;&nbsp;<data>(NULL)</data><br />&nbsp;&nbsp;&nbsp;&nbsp;<data>(NULL)</data><br />&nbsp;&nbsp;&nbsp;&nbsp;<data>(NULL)</data><br />&nbsp;&nbsp;&nbsp;&nbsp;<data><br />&nbsp;&nbsp;&nbsp;&nbsp;</data><br />&nbsp;&nbsp;</eventdata><br /></event> <br /><br />You may see a 100 or so similar warnings appear daily, each one accompanied by a corresponding Information event, such as the following:<br />Log Name:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Application<br />Source:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;MsiInstaller<br />Date:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#091;date&#093;<br />Event ID:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1035<br />Task Category: None<br />Level:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Information<br />Keywords:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Classic<br />User:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#091;SharePoint farm account&#093;<br />Computer:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#091;a SharePoint Server&nbsp; host&#093;<br />Description:<br />Windows Installer reconfigured the product. Product Name: Microsoft InfoPath Form Services English Language Pack. Product Version: 14.0.7015.1000. Product Language: 1033. Manufacturer: Microsoft Corporation. Reconfiguration success or error status: 0.<br />Event Xml:<br /><event xmlns="http://schemas.microsoft.com/win/2004/08/events/event"><br />&nbsp;&nbsp;<system><br />&nbsp;&nbsp;&nbsp;&nbsp;<provider name="MsiInstaller"><br />&nbsp;&nbsp;&nbsp;&nbsp;<eventid qualifiers="0">1035</eventid><br />&nbsp;&nbsp;&nbsp;&nbsp;<level>4</level><br />&nbsp;&nbsp;&nbsp;&nbsp;<task>0</task><br />&nbsp;&nbsp;&nbsp;&nbsp;<keywords>0x80000000000000</keywords><br />&nbsp;&nbsp;&nbsp;&nbsp;<timecreated systemtime="..."><br />&nbsp;&nbsp;&nbsp;&nbsp;<eventrecordid>8608</eventrecordid><br />&nbsp;&nbsp;&nbsp;&nbsp;<channel>Application</channel><br />&nbsp;&nbsp;&nbsp;&nbsp;<computer>&#091;a SharePoint Server &#093;</computer><br />&nbsp;&nbsp;&nbsp;&nbsp;<security userid="..."><br />&nbsp;&nbsp;</security></timecreated></provider></system><br />&nbsp;&nbsp;<eventdata><br />&nbsp;&nbsp;&nbsp;&nbsp;<data>Microsoft InfoPath Form Services English Language Pack</data><br />&nbsp;&nbsp;&nbsp;&nbsp;<data>14.0.7015.1000</data><br />&nbsp;&nbsp;&nbsp;&nbsp;<data>1033</data><br />&nbsp;&nbsp;&nbsp;&nbsp;<data>0</data><br />&nbsp;&nbsp;&nbsp;&nbsp;<data>Microsoft Corporation</data><br />&nbsp;&nbsp;&nbsp;&nbsp;<data>(NULL)</data><br />&nbsp;&nbsp;&nbsp;&nbsp;<data><br />&nbsp;&nbsp;&nbsp;&nbsp;</data><br />&nbsp;&nbsp;&nbsp;&nbsp;<binary>...</binary><br />&nbsp;&nbsp;</eventdata><br /></event><br />Each of these pairs corresponds to a different component that can be configured for the farm.<br /><br />Discussion<br /><br />These are associated with the farm's Product Version Job, which by default runs daily at 12:45 AM.&nbsp; Compare the times of these warnings with the time that your farm's Product Version Job runs, and you'll see the association.<br /><br /><b>Solution</b><br />1. Add the farm account to the host's local administrator group. <br />2. Restart the SharePoint 2010 Timer service. <br />3. Remove the farm account from the host's local administrator group. <br />4. Run the farm's product Version Job. <br />5. Check the host's Application Log. <br /><br />				</font><style type="text/css"><font size="3">blockquote { direction: ltr; color: rgb(0, 0, 10); text-align: left; }blockquote.western { font-family: "Liberation Serif",serif; font-size: 12pt; }blockquote.cjk { font-family: "SimSun"; font-size: 12pt; }blockquote.ctl { font-family: "Lucida Sans"; font-size: 12pt; }h1 { margin-bottom: 0.08in; direction: ltr; color: rgb(0, 0, 10); text-align: left; }h1.western { font-family: "Liberation Serif",sans-serif; }h1.cjk { font-family: "SimSun"; font-size: 24pt; }h1.ctl { font-family: "Lucida Sans"; font-size: 24pt; }p { margin-bottom: 0.1in; direction: ltr; color: rgb(0, 0, 10); line-height: 120%; text-align: left; }p.western { font-family: "Liberation Serif",serif; font-size: 12pt; }p.cjk { font-family: "SimSun"; font-size: 12pt; }p.ctl { font-family: "Lucida Sans"; font-size: 12pt; }code.western { font-family: "Liberation Mono",serif; }code.cjk { font-family: "Courier New"; }code.ctl { font-family: "Liberation Mono"; }a:link {  }</font></style><font size="3"></font>]]>
   </description>
   <pubDate>Wed, 19 Apr 2017 21:02:53 +0000</pubDate>
   <guid isPermaLink="true">https://www.KeithIT.com/warning-1015-failed-to-connect-to-server-error-0x80070005_post3044.html</guid>
   <WebWizNewsPad:pubDateISO>2017-04-19 21:02:53</WebWizNewsPad:pubDateISO>
  </item> 
 </channel>
</rss>