<?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>BasementJack</title>
	<atom:link href="http://basementjack.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://basementjack.com</link>
	<description>Jack&#039;s basement and some other stuff...</description>
	<lastBuildDate>Tue, 27 Dec 2011 20:28:29 +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>Perms needed for an account to deploy code in sharepoint 2010</title>
		<link>http://basementjack.com/uncategorized/perms-needed-for-an-account-to-deploy-code-in-sharepoint-2010/</link>
		<comments>http://basementjack.com/uncategorized/perms-needed-for-an-account-to-deploy-code-in-sharepoint-2010/#comments</comments>
		<pubDate>Tue, 27 Dec 2011 20:28:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://basementjack.com/?p=371</guid>
		<description><![CDATA[-user must be local admin on box -user must be in farm admin group in SP -user must be in sharepoint_shell_access role on SQL server on Sharepoint_config db -user must have dbo role on each content db being accessed (Sharepoint_shell_access role only exists on sharepoint_Config- this is ok)]]></description>
			<content:encoded><![CDATA[<p>-user must be local admin on box<br />
-user must be in farm admin group in SP<br />
-user must be in sharepoint_shell_access role on SQL server on Sharepoint_config db<br />
-user must have dbo role on each content db being accessed (Sharepoint_shell_access role only exists on sharepoint_Config- this is ok)</p>
]]></content:encoded>
			<wfw:commentRss>http://basementjack.com/uncategorized/perms-needed-for-an-account-to-deploy-code-in-sharepoint-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to tell what Version/Patch level SCOM is running at</title>
		<link>http://basementjack.com/uncategorized/how-to-tell-what-versionpatch-level-scom-is-running-at/</link>
		<comments>http://basementjack.com/uncategorized/how-to-tell-what-versionpatch-level-scom-is-running-at/#comments</comments>
		<pubDate>Sat, 03 Dec 2011 23:52:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[SCOM]]></category>

		<guid isPermaLink="false">http://basementjack.com/?p=291</guid>
		<description><![CDATA[Microsoft System Center Operations Manager 2007 has recently released CU3 (Update 3) the install proceedure varies depending on what version you have installed. how can you tell what version you have? Open the SCOM Console. Under &#8216;Monitoring&#8217; select the item &#8216;Discovered Inventory&#8217; Change the Scope of the items displayed to &#8216;Heath Service&#8217; (there is a [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft System Center Operations Manager 2007 has recently released CU3 (Update 3)<br />
the install proceedure varies depending on what version you have installed.</p>
<p>how can you tell what version you have?<br />
Open the SCOM Console.<br />
Under &#8216;Monitoring&#8217; select the item &#8216;Discovered Inventory&#8217;<br />
Change the Scope of the items displayed to &#8216;Heath Service&#8217; (there is a scope button on the tool bar on top)</p>
]]></content:encoded>
			<wfw:commentRss>http://basementjack.com/uncategorized/how-to-tell-what-versionpatch-level-scom-is-running-at/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Grep Equivalent for Windows</title>
		<link>http://basementjack.com/uncategorized/grep-equivalent-for-windows/</link>
		<comments>http://basementjack.com/uncategorized/grep-equivalent-for-windows/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 15:36:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://basementjack.com/?p=367</guid>
		<description><![CDATA[Every now and then I need a way to pull all of the lines from a log file that match a certain string. An example of this would be sharepoint uls logs &#8211; every error gets a unique ID number, and the errors can cover 20-30 lines at times. if all these lines were together, [...]]]></description>
			<content:encoded><![CDATA[<p>Every now and then I need a way to pull all of the lines from a log file that match a certain string.</p>
<p>An example of this would be sharepoint uls logs &#8211; every error gets a unique ID number, and the errors can cover 20-30 lines at times.</p>
<p>if all these lines were together, that&#8217;d be easy, but often they are not together so a grep like tool comes in handy.</p>
<p>Thanks to a google search and the scripthacks website, it looks like there is a command in windows for this already:</p>
<p>Findstr</p>
<p><a href="http://scripthacks.wordpress.com/2008/09/16/grep-equivalent-for-windows-string-parsing/">http://scripthacks.wordpress.com/2008/09/16/grep-equivalent-for-windows-string-parsing/</a></p>
<p>Basically, if you open a command prompt and cd to the logs directory,</p>
<p>you can enter something like this:</p>
<blockquote><p>Findstr &#8220;Correlation ID to find&#8221; filename</p></blockquote>
<p>or</p>
<blockquote><p>findstr &#8220;Correlation ID to find&#8221; *.log </p>
<p> which will look though all the log files in that directory (This can take forever if there are lots of large files)</p></blockquote>
<p> Of course you can save the results by adding  &gt; c:\temp\findresults.txt to the end of the line&#8230;</p>
<p>&nbsp;</p>
<p>A handy feature for SharePoint admins with lots of log files might be the /F:file flag</p>
<p>basically, this reads the file list from a file.</p>
<p>Why would you want this?</p>
<p>Because you can easily dump a list of all files to a file with this command:</p>
<blockquote><p>DIR /B *.log &gt; filelist.txt</p></blockquote>
<p>once you have this list (mine was 435 lines long!) , you can easily edit it in notepad and reduce the list down to the date range you&#8217;re after, this could take you from say, 435 lines down to 24</p>
<p>you&#8217;d then do your search with Findstr like this:</p>
<blockquote><p>Findstr &#8220;Correlation ID to find&#8221; /F:filelist.txt</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://basementjack.com/uncategorized/grep-equivalent-for-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Codeplex projects for Sharepoint</title>
		<link>http://basementjack.com/uncategorized/codeplex-projects-for-sharepoint/</link>
		<comments>http://basementjack.com/uncategorized/codeplex-projects-for-sharepoint/#comments</comments>
		<pubDate>Mon, 21 Nov 2011 15:29:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[SharePoint codeplex]]></category>

		<guid isPermaLink="false">http://basementjack.com/?p=356</guid>
		<description><![CDATA[Some neat projects exist on codeplex.com that relate to sharepoint FAST Search Query Analyzer: http://fastforsharepoint.codeplex.com/ Sharepoint content Migration tool: http://spdeploymentwizard.codeplex.com/ Sharepoint Feature Administration and Clean Up Tool: http://featureadmin.codeplex.com/ Sharepoint Farm Report: http://spsfarmreport.codeplex.com/ (an .exe &#8211; somewhat jumbled html output) Sharepoint 2010 Farm Poster http://spposter.codeplex.com/ (some nice Powershell scripts) &#160; &#160; &#160;]]></description>
			<content:encoded><![CDATA[<p>Some neat projects exist on codeplex.com that relate to sharepoint</p>
<p>FAST Search Query Analyzer: http://fastforsharepoint.codeplex.com/</p>
<p>Sharepoint content Migration tool: <a href="http://spdeploymentwizard.codeplex.com/">http://spdeploymentwizard.codeplex.com/</a></p>
<p>Sharepoint Feature Administration and Clean Up Tool: <a href="http://featureadmin.codeplex.com/">http://featureadmin.codeplex.com/</a></p>
<p>Sharepoint Farm Report: <a href="http://spsfarmreport.codeplex.com/">http://spsfarmreport.codeplex.com/</a> (an .exe &#8211; somewhat jumbled html output)</p>
<p>Sharepoint 2010 Farm Poster <a href="http://spposter.codeplex.com/">http://spposter.codeplex.com/</a> (some nice Powershell scripts)</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://basementjack.com/uncategorized/codeplex-projects-for-sharepoint/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2 possible solutions to PDF&#8217;s not displaying in browser when served up from SharePoint</title>
		<link>http://basementjack.com/uncategorized/2-possible-solutions-to-pdfs-not-displaying-in-browser-when-served-up-from-sharepoint/</link>
		<comments>http://basementjack.com/uncategorized/2-possible-solutions-to-pdfs-not-displaying-in-browser-when-served-up-from-sharepoint/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 15:33:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[SharePoint; Powershell; pdf; mime]]></category>

		<guid isPermaLink="false">http://basementjack.com/?p=354</guid>
		<description><![CDATA[I&#8217;ve run into this situation a few times and the fix was pretty easy. The scenario goes like this: A user clicks a PDF file in sharepoint and can&#8217;t open it in the browser (instead they have to open it in Adobe Reader) I&#8217;ve seen two fixes for this: 1) involved adding the mime type [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve run into this situation a few times and the fix was pretty easy.</p>
<p>The scenario goes like this: A user clicks a PDF file in sharepoint and can&#8217;t open it in the browser (instead they have to open it in Adobe Reader)</p>
<p>I&#8217;ve seen two fixes for this:<br />
1) involved adding the mime type to the web app &#8211; this was a little elusive to me at first &#8211; sharepoint keeps tabs on mime types separately than IIS does &#8211; I had originally looked in IIS and thought everything was ok..<br />
This can be checked with powershell<br />
$Web = Get-SPWebApplication &#8220;http://mysharepointsite.myurl.com&#8221;<br />
$Web.AllowedInlineDownloadedMimeTypes &#8211; this will list out all the mime types,<br />
if you dont see &#8220;application/pdf&#8221; in the list, then you can add it like this:<br />
$Web.AllowedInlineDownloadedMimeTypes.Add(&#8220;application/pdf&#8221;)<br />
$web.Update()</p>
<p>So that was the first approach.</p>
<p>The next approach involved looking at the &#8216;safe&#8217; settings for a document library &#8211; this too was a little elusive, becasue this is generally set at the site collection level &#8211; I don&#8217;t even think there is an option in the gui to set this for a document library in SharePoint 2010 (RTM) So again it&#8217;s gotta be done with powershell</p>
<p>I documented that here:  <a title="Permalink: http://basementjack.com/uncategorized/pdfs-not-openi…oint-2010-site/" href="Permalink: http://basementjack.com/uncategorized/pdfs-not-openi…oint-2010-site/">http://basementjack.com/uncategorized/pdfs-not-openi…oint-2010-site/ ‎</a></p>
]]></content:encoded>
			<wfw:commentRss>http://basementjack.com/uncategorized/2-possible-solutions-to-pdfs-not-displaying-in-browser-when-served-up-from-sharepoint/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PDF&#8217;s not opening in browser from a sharepoint 2010 site?</title>
		<link>http://basementjack.com/uncategorized/pdfs-not-opening-in-browser-from-a-sharepoint-2010-site/</link>
		<comments>http://basementjack.com/uncategorized/pdfs-not-opening-in-browser-from-a-sharepoint-2010-site/#comments</comments>
		<pubDate>Fri, 30 Sep 2011 17:29:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[PDF]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[Sharepoint]]></category>
		<category><![CDATA[SharePoint2010]]></category>

		<guid isPermaLink="false">http://basementjack.com/?p=352</guid>
		<description><![CDATA[I had this problem enough times that I wanted to capture the solution. First of all, credit goes to Craig Lussier on the Technet forms, his post has the full solution and background. http://social.technet.microsoft.com/Forums/en-US/sharepoint2010setup/thread/2f66404e-5193-46d3-b6b1-45cf72410432?prof=required I used the above solution and it worked great. I also found a script that I did not try. The script [...]]]></description>
			<content:encoded><![CDATA[<p>I had this problem enough times that I wanted to capture the solution.</p>
<p>First of all, credit goes to Craig Lussier on the Technet forms, his post has the full solution and background.</p>
<p><a title="Technet Forums." href="http://social.technet.microsoft.com/Forums/en-US/sharepoint2010setup/thread/2f66404e-5193-46d3-b6b1-45cf72410432?prof=required" target="_blank">http://social.technet.microsoft.com/Forums/en-US/sharepoint2010setup/thread/2f66404e-5193-46d3-b6b1-45cf72410432?prof=required</a></p>
<p>I used the above solution and it worked great.</p>
<p>I also found a script that I did not try. The script is described as being able to change this setting system wide by looping through each document library in each subsite of a given site &#8211; it could come in handy. (the script is by the same poster &#8211; Craig Lussier &#8211; Thanks Craig!</p>
<p><a href="http://gallery.technet.microsoft.com/scriptcenter/Set-SPDocumentLibrary-0426781c">http://gallery.technet.microsoft.com/scriptcenter/Set-SPDocumentLibrary-0426781c</a></p>
<blockquote>
<div>
<div>
<p>The code below is from the first link above, I&#8217;ve copied it here in case MS ever changes the link structure and the original post can&#8217;t be found. </p>
</div>
</div>
</blockquote>
<div>
<div>
<div>
<pre># SPAssignment
$gc = Start-SPAssignment

#Get Web
$web = $gc | Get-SPWeb "http://yourspweburl"

#Get Document Library
$docLib = $web.lists["Your Document Library Title"]

#View all properties/methods of the Document Library and you'll see that BrowserFileHandling is a property
$docLib | Get-Member

#See the current BrowserFileHandling setting for the Document Library
$docLib.BrowserFileHandling

#If you need to change it from Strict to Permissive
$docLib.BrowserFileHandling = "Permissive"
$docLib.Update()

# End SPAssgment
$gc | Stop-SPAssignment</pre>
</div>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://basementjack.com/uncategorized/pdfs-not-opening-in-browser-from-a-sharepoint-2010-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scope Sharepoint FAST search to a file share</title>
		<link>http://basementjack.com/uncategorized/scope-sharepoint-fast-search-to-a-file-share/</link>
		<comments>http://basementjack.com/uncategorized/scope-sharepoint-fast-search-to-a-file-share/#comments</comments>
		<pubDate>Mon, 19 Sep 2011 15:49:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[FAST]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://basementjack.com/?p=329</guid>
		<description><![CDATA[Ok this took a bit of wrangling and some new understandings on my part to understand. I was trying to index a file share of content, and create a FAST search page that would ONLY search that content. Since the FAST server had tons of other stuff on it, I needed to create a scope to narrow down the [...]]]></description>
			<content:encoded><![CDATA[<p>Ok this took a bit of wrangling and some new understandings on my part to understand.</p>
<p>I was trying to index a file share of content, and create a FAST search page that would ONLY search that content. Since the FAST server had tons of other stuff on it, I needed to create a scope to narrow down the search. </p>
<p>I used this powershell command to create the scope &#8211; this is key &#8211; you can&#8217;t do this from the sharepoint GUI (As of Sharepoint 2010 SP)</p>
<p>New-SPEnterpriseSearchQueryScope -SearchApplication &#8220;FAST Search Query SSA&#8221; -Name thisisthescopename -Description &#8220;A scope for a file share&#8221; -DisplayInAdminUI 1 -ExtendedSearchFilter &#8220;contentsource:nameofcontentsource&#8221;</p>
<p>Some explanation &#8211; the -SearchApplication is the name of our FAST query SSA &#8211; yours might be named differently</p>
<p>The -ExtendedSearchFilter nees some explanation,</p>
<p>First, the word contentsource needs to be in lower case &#8211; I had orignally tried it in mixed case (ContentSource) and that didn&#8217;t work</p>
<p>Next, the :nameofcontentsource &#8211; this is the artificial name you gave the content source over in your FAST Content SSA &#8211; it&#8217;s NOT the URL, UNC Path etc.. of the content!</p>
<p>for example, if in your FAST Content SSA, you created a content source on \\server1\files and called it myfiles</p>
<p>then your ExtendedSearchFilter would look like this: &#8220;contentsource:myfiles&#8221;</p>
<p>Ok so that&#8217;s the end of my explanation of the command itself.</p>
<p>After a few minutes the scope is created and we can test it in a normal FAST search site in sharepoint</p>
<p>Lets say that we indexed a bunch of content on monkeys and we want to see if it turns up in our new scope.</p>
<p>We would search for scope:thisisthescopename monkey</p>
<p>If we get the results we want, then we know the scope is working.</p>
<p>One step beyond this, we can create a special search page for this scope,</p>
<p>create a new FAST search site in sharepoint.</p>
<p>do a bogus search on the sites home page so that it shows you the results page</p>
<p>Edit the results page in the browser</p>
<p>find the web part at the bottom that displays the results</p>
<p>edit that web part</p>
<p>On the right hand side of the page, are the web parts properties, one of them is &#8216;scope&#8217;</p>
<p>put thisisthescopename in that web part and save the page (don&#8217;t forget to check in/publish if needed too)</p>
<p>now on your newly modified search page, when you enter a search for monkey, it will limit it to your scope.</p>
]]></content:encoded>
			<wfw:commentRss>http://basementjack.com/uncategorized/scope-sharepoint-fast-search-to-a-file-share/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clear FAST Search Content Collection</title>
		<link>http://basementjack.com/uncategorized/clear-fast-search-content-collection/</link>
		<comments>http://basementjack.com/uncategorized/clear-fast-search-content-collection/#comments</comments>
		<pubDate>Tue, 13 Sep 2011 00:29:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://basementjack.com/?p=347</guid>
		<description><![CDATA[I had a stubborn FAST Server installation that continued to return search results, even after the content source was removed from FAST! After stumbling around, someone on the FAST forums at Microsoft suggested clearing the sp collection, but didn&#8217;t say how. Here&#8217;s how: On the fast server, there will be a shortcut to launch a [...]]]></description>
			<content:encoded><![CDATA[<p>I had a stubborn FAST Server installation that continued to return search results, even after the content source was removed from FAST!</p>
<p>After stumbling around, someone on the FAST forums at Microsoft suggested clearing the sp collection, but didn&#8217;t say how.</p>
<p>Here&#8217;s how:</p>
<p>On the fast server, there will be a shortcut to launch a FAST powershell prompt &#8211; open that</p>
<p>Enter the command</p>
<pre>Clear-FastSearchContentCollection sp</pre>
<p>That should clear it out &#8211; you&#8217;ll need to do full crawls on all your content sources after this is done to repopulate the index, so it&#8217;s best not to do this to a production box without understanding how long search will be down.</p>
<p>Also note that in FAST Search for Sharepoint, pretty much everything is stored in the SP collection &#8211; It&#8217;s my understanding that as of right now, you can only have one collection in FAST for SP.</p>
]]></content:encoded>
			<wfw:commentRss>http://basementjack.com/uncategorized/clear-fast-search-content-collection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snippet of XSLT to create a link to the parent folder of an item in a search result</title>
		<link>http://basementjack.com/uncategorized/snippet-of-xslt-to-create-a-link-to-the-parent-folder-of-an-item-in-a-search-result/</link>
		<comments>http://basementjack.com/uncategorized/snippet-of-xslt-to-create-a-link-to-the-parent-folder-of-an-item-in-a-search-result/#comments</comments>
		<pubDate>Fri, 09 Sep 2011 22:09:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://basementjack.com/?p=343</guid>
		<description><![CDATA[I wanted to add a link to the parent folder of an item in FAST search results. I had found an article that said I could use the &#8220;SiteName&#8221; property. Unfortunately, this content wasn&#8217;t from a SharePoint site, it was from a File Share. The &#8220;SiteName&#8221; only returned \\Server\Sharename for each result, never the folder [...]]]></description>
			<content:encoded><![CDATA[<p>I wanted to add a link to the parent folder of an item in FAST search results.</p>
<p>I had found an article that said I could use the &#8220;SiteName&#8221; property.</p>
<p>Unfortunately, this content wasn&#8217;t from a SharePoint site, it was from a File Share.</p>
<p>The &#8220;SiteName&#8221; only returned <a href="file://server/Sharename">\\Server\Sharename</a> for each result, never the folder path</p>
<p>For example <a href="file://server/Share/Folder1/SubFolderA/myfile.txt">\\Server\Share\Folder1\SubFolderA\myfile.txt</a> is where the file is</p>
<p>SiteName retured <a href="file://\\Server\Share">\\Server\Share</a></p>
<p>I wanted <a href="file://\\Server\Share\Folder1\SubFolderA\">\\Server\Share\Folder1\SubFolderA\</a></p>
<p>The following XSLT uses a few chained string commands to return the desired results</p>
<pre>&lt;xsl:if test="isdocument = 'True'"&gt;
   &lt;br/&gt;
   &lt;a&gt;
      &lt;xsl:attribute name="href"&gt;
         &lt;xsl:value-of select="substring(url,1,string-length(url) - string-length(title))"/&gt;
      &lt;/xsl:attribute&gt;
      &lt;i&gt;Link to Containing Folder&lt;/i&gt;
   &lt;/a&gt;
&lt;/xsl:if&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://basementjack.com/uncategorized/snippet-of-xslt-to-create-a-link-to-the-parent-folder-of-an-item-in-a-search-result/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snippet of XLST to dump the output of search results</title>
		<link>http://basementjack.com/uncategorized/snippet-of-xlst-to-dump-the-output-of-search-results/</link>
		<comments>http://basementjack.com/uncategorized/snippet-of-xlst-to-dump-the-output-of-search-results/#comments</comments>
		<pubDate>Thu, 08 Sep 2011 01:04:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://basementjack.com/?p=330</guid>
		<description><![CDATA[This is one of those posts more to serve as a reminder to me than anything. While watching a video on SharePoint-Videos.com about customizing search results with XSLT, the presenter showed how to use a small bit of XSL to dump all the search results returned by the search engine &#8211; the original video can [...]]]></description>
			<content:encoded><![CDATA[<p>This is one of those posts more to serve as a reminder to me than anything.</p>
<p>While watching a video on SharePoint-Videos.com about customizing search results with XSLT, the presenter showed how to use a small bit of XSL to dump all the search results returned by the search engine &#8211; the original video can be found here: http://www.sharepoint-videos.com/sp10-customize-search-results-using-xslt/</p>
<p>&nbsp;</p>
<p>&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;UTF-8&#8243;&gt;</p>
<pre>&lt;xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"&gt;
&lt;xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/&gt;
&lt;xls:template match "/"&gt;
&lt;textarea rows="20" cols="100"&gt;
 &lt;xsl:copy-of select="*"/&gt;
&lt;/textarea&gt;
&lt;/xsl:template&gt;
&lt;/xsl:stylesheet&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://basementjack.com/uncategorized/snippet-of-xlst-to-dump-the-output-of-search-results/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

