<?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>UKoom &#187; SharePoint</title>
	<atom:link href="http://www.ukoom.com/category/sharepoint/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ukoom.com</link>
	<description>Documentum, SharePoint, Alfresco, ECM...</description>
	<lastBuildDate>Tue, 25 Oct 2011 15:11:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>The detail of SharePoint feature</title>
		<link>http://www.ukoom.com/the.htm</link>
		<comments>http://www.ukoom.com/the.htm#comments</comments>
		<pubDate>Mon, 11 Apr 2011 18:53:18 +0000</pubDate>
		<dc:creator>ukoom</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint 2007]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://www.ukoom.com/?p=1267</guid>
		<description><![CDATA[SharePoint Features can be targeted at the Farm, Web Application, Site Collection or Web Site scope. The target will effect things like where you can manage the feature activation from in the UI and at which point (and how many times) the Feature receiver events are called. Reference: http://blog.pentalogic.net/2010/06/sharepoint-feature-receivers-events-details/]]></description>
			<content:encoded><![CDATA[<p>SharePoint Features can be targeted at the <a href="http://msdn.microsoft.com/en-us/library/ms476615.aspx" target="_blank">Farm, Web Application, Site Collection or Web Site scope</a>.  The target will effect things like where you can manage the feature  activation from in the UI and at which point (and how many times) the  Feature receiver events are called.</p>
<p>Reference:</p>
<p>http://blog.pentalogic.net/2010/06/sharepoint-feature-receivers-events-details/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ukoom.com/the.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to execute the PowerShell script</title>
		<link>http://www.ukoom.com/how-to-execute-the-powershell-script.htm</link>
		<comments>http://www.ukoom.com/how-to-execute-the-powershell-script.htm#comments</comments>
		<pubDate>Mon, 11 Apr 2011 18:45:00 +0000</pubDate>
		<dc:creator>ukoom</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://www.ukoom.com/?p=1263</guid>
		<description><![CDATA[Here are basic instructions to help you execute a PowerShell command.  You have a choice of three strategies; firstly, the time-honoured method of copying other people&#8217;s examples, and then pasting their code into your PowerShell session.  Secondly, creating cmdlets (my favorite), and thirdly, simply typing the instructions at the PowerShell command line. The recommended way [...]]]></description>
			<content:encoded><![CDATA[<p>Here are basic instructions to help you execute a PowerShell command.         You have a choice of three strategies; firstly, the time-honoured  method of copying other people&#8217;s examples, and then pasting their code  into your PowerShell session.  Secondly, creating cmdlets (my favorite),  and thirdly, simply typing the instructions at the PowerShell command  line.</p>
<p>The recommended way is running the script as a file. Just need to rename the file with the &#8216;.ps1&#8242; extenstion</p>
<p>Reference:</p>
<p>http://www.computerperformance.co.uk/powershell/powershell_command_execute.htm#Method_2_Cmdlet_%28Best%29</p>
<p>http://ranaictiu-technicalblog.blogspot.com/2010/05/sharepoint-2010-deployment-powershell.html</p>
<p>http://technet.microsoft.com/en-us/library/ee806878.aspx</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ukoom.com/how-to-execute-the-powershell-script.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>what is SharePoint\System account</title>
		<link>http://www.ukoom.com/what-is-sharepointsystem-account.htm</link>
		<comments>http://www.ukoom.com/what-is-sharepointsystem-account.htm#comments</comments>
		<pubDate>Mon, 11 Apr 2011 18:42:20 +0000</pubDate>
		<dc:creator>ukoom</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://www.ukoom.com/?p=1261</guid>
		<description><![CDATA[SHAREPOINT\System account is the same account used by application pool of your SharePoint web application in IIS at the time of creation/extension of respective web application. This is the account which is used when you run your code in under elevated privileges by SPSecurity.RunWithElevatedPrivileges. When you create/extend a web application in SharePoint and specify an Application Pool then the [...]]]></description>
			<content:encoded><![CDATA[<ol>
<li>SHAREPOINT\System account is the same account used by application pool of your SharePoint web application in IIS <span style="text-decoration: underline;">at the time of creation/extension</span> of respective web application.</li>
<li>This is the account which is used when you run your code in under elevated privileges by <strong>SPSecurity.RunWithElevatedPrivileges.</strong></li>
<li><strong> </strong>When you create/extend a web application in  SharePoint and specify an Application Pool then the identity (Network  Account) used by that Application pool becomes the  SHAREPOINT\System account.</li>
<li>It is highly recommended that end user should not be allowed to use this account to avoid unexpected errors.</li>
<li>If you change the identity of App Pool account after creating/extending the SharePoint web application, the new account <span style="text-decoration: underline;">will not</span> become the SHAREPOINT\System.</li>
</ol>
<p>Reference:</p>
<p>http://www.beyondweblogs.com/post/What-is-SharePoint-System-Account.aspx</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ukoom.com/what-is-sharepointsystem-account.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom Action Locations and IDs</title>
		<link>http://www.ukoom.com/custom-action-locations-and-ids.htm</link>
		<comments>http://www.ukoom.com/custom-action-locations-and-ids.htm#comments</comments>
		<pubDate>Mon, 11 Apr 2011 18:36:07 +0000</pubDate>
		<dc:creator>ukoom</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://www.ukoom.com/?p=1256</guid>
		<description><![CDATA[Original article: http://msdn.microsoft.com/en-us/library/bb802730.aspx The following table shows the locations, custom action group IDs, and custom action IDs that are used in the CustomAction element and the CustomActionGroup element of custom actions that are installed by default in Microsoft SharePoint Foundation. In the table, each location value corresponds to the Location attribute of the CustomAction element. [...]]]></description>
			<content:encoded><![CDATA[<p>Original article:</p>
<p>http://msdn.microsoft.com/en-us/library/bb802730.aspx</p>
<div>
<p>The following table shows the locations, custom action group IDs, and custom action IDs that are used in the <a href="http://msdn.microsoft.com/en-us/library/ms460194.aspx">CustomAction</a> element and the <a href="http://msdn.microsoft.com/en-us/library/ms438085.aspx">CustomActionGroup</a> element of custom actions that are installed by default in Microsoft SharePoint Foundation.</p>
<p>In the table, each location value corresponds to the <span><span>Location</span></span> attribute of the <a href="http://msdn.microsoft.com/en-us/library/ms460194.aspx">CustomAction</a> element. Each group ID corresponds to the <span><span>GroupId</span></span> attribute of the <a href="http://msdn.microsoft.com/en-us/library/ms460194.aspx">CustomAction</a> element or to the <span><span>Id</span></span> attribute of the <a href="http://msdn.microsoft.com/en-us/library/ms438085.aspx">CustomActionGroup</a> element. Each custom action ID corresponds to the <span><span>Id</span></span> attribute of the <a href="http://msdn.microsoft.com/en-us/library/ms460194.aspx">CustomAction</a> element.</p>
<p>You can create a Feature that implements the <a href="http://msdn.microsoft.com/en-us/library/ms414790.aspx">HideCustomAction</a> element to hide any default custom action that is identified in the table.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.ukoom.com/custom-action-locations-and-ids.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating Content Types in SharePoint 2010</title>
		<link>http://www.ukoom.com/creating-content-types-in-sharepoint-2010.htm</link>
		<comments>http://www.ukoom.com/creating-content-types-in-sharepoint-2010.htm#comments</comments>
		<pubDate>Mon, 11 Apr 2011 18:34:39 +0000</pubDate>
		<dc:creator>ukoom</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://www.ukoom.com/?p=1253</guid>
		<description><![CDATA[There are lots of articles about creating content type in SharePoint 2010. Below links FYI. Reference: http://msdn.microsoft.com/en-us/library/gg295290.aspx http://msdn.microsoft.com/en-us/library/ff630942.aspx#Y684 http://msdn.microsoft.com/en-us/vcsharp/Video/ff623016]]></description>
			<content:encoded><![CDATA[<p>There are lots of articles about creating content type in SharePoint 2010. Below links FYI.</p>
<p>Reference:</p>
<p>http://msdn.microsoft.com/en-us/library/gg295290.aspx</p>
<p>http://msdn.microsoft.com/en-us/library/ff630942.aspx#Y684</p>
<p>http://msdn.microsoft.com/en-us/vcsharp/Video/ff623016</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ukoom.com/creating-content-types-in-sharepoint-2010.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CustomErrors setting in SharePoint 2010</title>
		<link>http://www.ukoom.com/customerrors-setting-in-sharepoint-2010.htm</link>
		<comments>http://www.ukoom.com/customerrors-setting-in-sharepoint-2010.htm#comments</comments>
		<pubDate>Mon, 11 Apr 2011 18:31:21 +0000</pubDate>
		<dc:creator>ukoom</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://www.ukoom.com/?p=1251</guid>
		<description><![CDATA[It’s a little bit different than SharePoint 2007, you need to change two web.config files instead of one: Underneath  [systemdrive]:/inetpub/wwwroot/wss/virtualdirectories/ In the layouts directory underneath the SharePoint root directory or 14 hive – [systemdrive]:/Program Files/Common Files/Microsoft Shared/Web Server Extensions/14/TEMPLATE/LAYOUTS/ The settings that you need to change in the web.config file are still the same: Change [...]]]></description>
			<content:encoded><![CDATA[<p>It’s a little bit different than SharePoint 2007, you need to change two web.config files instead of one:</p>
<ul>
<li>Underneath  [systemdrive]:/inetpub/wwwroot/wss/virtualdirectories/</li>
<li>In  the layouts directory underneath the SharePoint root directory   or 14  hive – [systemdrive]:/Program Files/Common Files/Microsoft   Shared/Web  Server Extensions/14/TEMPLATE/LAYOUTS/</li>
</ul>
<p>The settings that you need to change in the web.config file are still the same:</p>
<ul>
<li>Change Debug=”true”</li>
<li>CallStack=”true”</li>
<li>CustomErrors=”Off”</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.ukoom.com/customerrors-setting-in-sharepoint-2010.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Navigate Code and Text in Virtual Studio 2010</title>
		<link>http://www.ukoom.com/navigate-code-and-text-in-virtual-studio-2010.htm</link>
		<comments>http://www.ukoom.com/navigate-code-and-text-in-virtual-studio-2010.htm#comments</comments>
		<pubDate>Mon, 11 Apr 2011 18:28:47 +0000</pubDate>
		<dc:creator>ukoom</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://www.ukoom.com/?p=1249</guid>
		<description><![CDATA[Original article: http://msdn.microsoft.com/en-us/library/9w13x3hh.aspx There are various ways to move through text or code in the Code Editor using the mouse and navigation keys: Use the arrow keys to move one character at a time, or the arrow keys in combination with the CTRL key to move one word at a time. Arrow keys move one [...]]]></description>
			<content:encoded><![CDATA[<p>Original article: http://msdn.microsoft.com/en-us/library/9w13x3hh.aspx</p>
<div>
<p>There are various ways to move through text or code in the Code Editor using the mouse and navigation keys:</p>
<ul>
<li>Use  the arrow keys to move one character at a time, or the arrow keys in  combination with the CTRL key to move one word at a time. Arrow keys  move one line at a time also.</li>
<li>Click a location with the mouse.</li>
<li>Use the scroll bars or scroll wheel on the mouse to move through the text.</li>
<li>Use the HOME, END, PAGEUP, and PAGEDOWN keys.</li>
<li>Use CTRL+PAGE UP and CTRL+PAGE DOWN to move the insertion point to the top or bottom of the window, respectively.</li>
<li>Use CTRL+HOME and CTRL+END to move the insertion point to the start or end of the file, respectively.</li>
<li>Use CTRL+UP ARROW and CTRL+DOWN ARROW to scroll the view without moving the insertion point.</li>
<li>Use the <span>Navigate Backward</span> button to move the insertion point to previous locations in the active document, and the <span>Navigate Forward</span> button to return to more recent locations.</li>
</ul>
<p>Operations such as <span>Incremental Search</span>, <span>Goto Line</span>, <span>Goto Definition</span>, <span>Beginning of Document</span>, <span>End of Document</span>, <span>Paste</span>, and <span>Insert File</span> can move the insertion point a significant distance within the active document. The <span>Navigate Backward</span> and <span>Navigate Forward</span> buttons retain the last 20 locations of the insertion point.</p>
<p>The following sections describe other ways to move to specific sections and lines of code:</p>
<ul>
<li>Navigation bar</li>
<li>Bookmarks in the <span>Bookmarks Window</span></li>
<li>Comment tasks in the <span>Task List</span></li>
<li>Incremental searches</li>
<li><span>Go to Line</span> command</li>
<li><span>Go to Definition</span> command</li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.ukoom.com/navigate-code-and-text-in-virtual-studio-2010.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Display Line Numbers in Virtual Studio 2010</title>
		<link>http://www.ukoom.com/display-line-numbers-in-virtual-studio-2010.htm</link>
		<comments>http://www.ukoom.com/display-line-numbers-in-virtual-studio-2010.htm#comments</comments>
		<pubDate>Mon, 11 Apr 2011 18:26:33 +0000</pubDate>
		<dc:creator>ukoom</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://www.ukoom.com/?p=1247</guid>
		<description><![CDATA[ine numbers are not added to your code; they are for reference only. For line numbers to print, you must select Include line numbers in the Print dialog box. For more information, see How to: Print Code in the Editor. To display line numbers in code On the Tools menu, select Options. In the categories [...]]]></description>
			<content:encoded><![CDATA[<p>ine numbers are not added to your code; they are for reference only. For line numbers to print, you must select <span>Include line numbers</span> in the <span>Print</span> dialog box. For more information, see <span><a href="http://msdn.microsoft.com/en-us/library/1zh337ws.aspx">How to: Print Code in the Editor</a></span>.</p>
<h3>To display line numbers in code</h3>
<div>
<ol>
<li>On the <span>Tools</span> menu, select <span>Options</span>.</li>
<li>In the categories list on the left side of the <span>Options</span> window, expand the <span>Text Editor</span> node.</li>
<li>Expand the <span>All Languages</span> subnode and select <span>General</span> to set this option globally.</li>
</ol>
<div>
<table border="0">
<tbody>
<tr>
<th> <img id="alert_note" title="Note" src="http://i.msdn.microsoft.com/Hash/030c41d9079671d09a62d8e2c1db6973.gif" alt="Note" /> <strong>Note</strong></th>
</tr>
<tr>
<td>Visual C# Express user must click <span>Show All Settings</span> to reveal the <span>All Languages</span> subfolder.</td>
</tr>
</tbody>
</table>
</div>
<p>—or—</p>
<p>Choose the <span>General</span> options in the subfolder for the language in which you are programming.</p>
<ol>
<li>In the <span>Display</span> section select <span>Line numbers</span>.</li>
</ol>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.ukoom.com/display-line-numbers-in-virtual-studio-2010.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change icoin in SharePoint 2010 &#8211; ByExtension Element</title>
		<link>http://www.ukoom.com/change-icoin-in-sharepoint-2010-byextension-element.htm</link>
		<comments>http://www.ukoom.com/change-icoin-in-sharepoint-2010-byextension-element.htm#comments</comments>
		<pubDate>Mon, 11 Apr 2011 18:24:57 +0000</pubDate>
		<dc:creator>ukoom</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://www.ukoom.com/?p=1245</guid>
		<description><![CDATA[The ByExtension element defines icons for documents according to their file name extensions. This element is used in DOCICON.XML to drive mapping between file extensions and their corresponding document library icons. In general, there are two ways that mapping can be performed: by extension (for example, the ByExtension element can be used to map .xls [...]]]></description>
			<content:encoded><![CDATA[<p>The <strong>ByExtension</strong> element defines icons for documents according to their file name extensions.</p>
<p>This element is used in DOCICON.XML to drive mapping between file extensions and their corresponding document library icons.</p>
<p>In general, there are two ways that mapping can be performed: by extension (for example, the <strong>ByExtension</strong> element can be used to map .xls to the appropriate icon for an Excel file) and by ProgID (an HTML document that contains <code>&lt;META Name="ProgId" Content="Word.Document"&gt;</code> would map to an icon for Word by using the <strong>ByProgID</strong> element).</p>
<p>If you want the document library feature to support a new file extension, add the extension to a <strong>ByExtension</strong> section and then restart the server.</p>
<h4>Example</h4>
<p>The following example defines file icons by both ProgIDs and file extensions, but it also sets a default icon for new documents.</p>
<pre>&lt;DocIcons&gt;
  &lt;ByProgID&gt;
    &lt;Mapping Key="Excel.Sheet" Value="ichtmxls.gif"/&gt;
    &lt;Mapping Key="PowerPoint.Slide" Value="ichtmppt.gif"/&gt;
    &lt;Mapping Key="Word.Document" Value="ichtmdoc.gif"/&gt;
  &lt;/ByProgID&gt;
  &lt;ByExtension&gt;
    &lt;Mapping Key="doc" Value="icdoc.gif"/&gt;
    &lt;Mapping Key="gif" Value="icgif.gif"/&gt;
    &lt;Mapping Key="htm" Value="ichtm.gif"/&gt;
    &lt;Mapping Key="html" Value="ichtm.gif"/&gt;
    &lt;Mapping Key="ppt" Value="icppt.gif"/&gt;
  &lt;/ByExtension&gt;
  &lt;Default&gt;
    &lt;Mapping Value="icgen.gif"/&gt;
  &lt;/Default&gt;
&lt;/DocIcons&gt;

Reference:

http://msdn.microsoft.com/en-us/library/ms948139.aspx</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.ukoom.com/change-icoin-in-sharepoint-2010-byextension-element.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configure Adobe PDF IFilter in SharePoint 2010</title>
		<link>http://www.ukoom.com/configure-adobe-pdf-ifilter-in-sharepoint-2010.htm</link>
		<comments>http://www.ukoom.com/configure-adobe-pdf-ifilter-in-sharepoint-2010.htm#comments</comments>
		<pubDate>Mon, 11 Apr 2011 18:22:19 +0000</pubDate>
		<dc:creator>ukoom</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://www.ukoom.com/?p=1243</guid>
		<description><![CDATA[We need configure Adboe PDF IFilter to index, crawl the PDF files in SharePoint 2010. Below lists the basic steps, hope it helps. Download and install the Adobe PDF iFilter. It is free!!! Configure the Adboe PDF icon so that the PDF file will be displayed with PDF icon. Configure SharePoint Foundation search service via [...]]]></description>
			<content:encoded><![CDATA[<p>We need configure Adboe PDF IFilter to index, crawl the PDF files in SharePoint 2010.</p>
<p>Below lists the basic steps, hope it helps.</p>
<ul>
<li>Download and install the Adobe PDF iFilter. It is free!!!</li>
<li>Configure the Adboe PDF icon so that the PDF file will be displayed with PDF icon.</li>
<li>Configure SharePoint Foundation search service via Central Admin to index and crawl the PDF files.</li>
<li>Configure the SharePoint site to allow user open or download PDF files correctly.</li>
</ul>
<p>We can follow below articles to  configure the SharePoint 2010.</p>
<p>Reference:</p>
<p>http://nickgrattan.wordpress.com/2010/06/14/adobe-pdf-ifilter-indexing-with-sharepoint%C2%A02010/</p>
<p>http://www.sharepointusecases.com/index.php/2011/02/automate-pdf-configuration-for-sharepoint-2010-via-powershell/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ukoom.com/configure-adobe-pdf-ifilter-in-sharepoint-2010.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

