<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Comment Feed for Channel 9 - How-to: Query Vista Search From Your App</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Blogs/jmazner/How-to-Query-Vista-Search-From-Your-App/RSS"></atom:link>
	<image>
		<url>http://ecn.channel9.msdn.com/o9/previewImages/100/201976_100x75.jpg</url>
		<title>Channel 9 - How-to: Query Vista Search From Your App</title>
		<link></link>
	</image>
	<description>Ian Griffiths,&amp;nbsp;dev trainer extraordinaire, recorded a series of &amp;quot;how-to&amp;quot; videos for us, each one demonstrating how to write code that takes advantage of a feature of the Windows Vista platform.&amp;nbsp; Here&#39;s
 the first in the series -- how to issues queries against the desktop search engine.[Update: the second installment, How To: Use Vista&#39;s Power Management APIs To Be A Good Laptop Citizen is now up]</description>
	<link></link>
	<language>en</language>
	<pubDate>Tue, 21 May 2013 04:03:32 GMT</pubDate>
	<lastBuildDate>Tue, 21 May 2013 04:03:32 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<item>
		<title>Re: How-to: Query Vista Search From Your App</title>
		<description>
			<![CDATA[
<p>Here are a few snippets of relevant source code from the demo:<br /><br />public partial class Window1 : Window<br />&nbsp;{<br />&nbsp;&nbsp;private ImageCollection _foundImages = null;<br />&nbsp;&nbsp;private string[] _exifProperties = new string[] { <br />&nbsp;&nbsp;&nbsp;&quot;System.Photo.CameraManufacturer&quot;, &quot;System.Photo.CameraModel&quot;,<br />&nbsp;&nbsp;&nbsp;&quot;System.Photo.FNumber&quot;, &quot;System.Photo.ExposureTime&quot;, &quot;System.Photo.FocalLength&quot;,<br />&nbsp;&nbsp;&nbsp;&quot;System.Photo.ExposureBias&quot;, &quot;System.Photo.MeteringMode&quot;,<br />&nbsp;&nbsp;&nbsp;&quot;System.Photo.ColorSpace&quot;};</p>
<p>&nbsp;&nbsp;private string[] _generalProperties = new string[] {<br />&nbsp;&nbsp;&nbsp;&quot;System.Author&quot;, &quot;System.Keywords&quot;, &quot;System.File.Description&quot;};</p>
<p>&nbsp;&nbsp;private void OnSearch(object sender, RoutedEventArgs e)<br />&nbsp;&nbsp;{<br />&nbsp;&nbsp;&nbsp;string indexerConnString = &quot;provider=Search.CollatorDSO.1;EXTENDED PROPERTIES=\&quot;Application=Windows\&quot;&quot;;<br />&nbsp;&nbsp;&nbsp;using (OleDbConnection conn = new OleDbConnection(indexerConnString))<br />&nbsp;&nbsp;&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;conn.Open();<br />&nbsp;&nbsp;&nbsp;&nbsp;string keywordValue = SearchBox.Text;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;_foundImages.Clear();<br />&nbsp;&nbsp;&nbsp;&nbsp;GetImageFileResults(keywordValue, conn);<br />&nbsp;&nbsp;&nbsp;&nbsp;ImageListBox.DataContext = _foundImages;<br />&nbsp;&nbsp;&nbsp;}<br />&nbsp;&nbsp;}</p>
<p>&nbsp;&nbsp;private void GetImageFileResults(string keywordValue, OleDbConnection conn)<br />&nbsp;&nbsp;{</p>
<p>&nbsp;&nbsp;&nbsp;try<br />&nbsp;&nbsp;&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;System.Collections.Hashtable checkNames = new System.Collections.Hashtable();</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;string sqlString = &quot;Select \&quot;System.Title\&quot;, &quot; &#43;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;\&quot;System.DisplayFolder\&quot;, \&quot;System.DisplayName\&quot; &quot; &#43;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;FROM systemindex..scope() &quot; &#43;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;WHERE FREETEXT(\&quot;System.CanonicalType\&quot;, 'JPG') &quot;/* &#43;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;AND CONTAINS(\&quot;System.Path\&quot;, 'file:')&quot;*/;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (!string.IsNullOrEmpty(keywordValue))<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; sqlString &#43;= &quot; AND (\&quot;System.Keywords\&quot; = SOME ARRAY ['&quot; &#43; keywordValue &#43; &quot;'])&quot;;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;OleDbCommand cmd = new OleDbCommand(sqlString, conn);</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;using (OleDbDataReader reader = cmd.ExecuteReader())<br />&nbsp;&nbsp;&nbsp;&nbsp;{</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;while (reader.Read())<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ImageInfo imageInfo = new ImageInfo();<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;imageInfo.Title = reader.GetString(0);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; string folder = reader.GetString(1);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; string name = reader.GetString(2);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // workaround to ignore non-files<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (folder.Length &lt; 2 || folder[1] != ':')<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; continue;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;imageInfo.ImagePath = System.IO.Path.Combine(<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; folder, name);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // Workaround to ignore peculiar files on non-existent<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // volumes that build 5365 seems to return.<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (!System.IO.File.Exists(imageInfo.ImagePath))<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; continue;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (imageInfo.ImagePath.Contains(&quot;Temporary Internet Files&quot;))<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; continue;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (checkNames.ContainsKey(imageInfo.Title))<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;int index = (int)checkNames[(string)imageInfo.Title];</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (_foundImages[index] != null)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (_foundImages[index].Variations == null)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ImageCollection variationCollection = new ImageCollection();<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;variationCollection.Add(imageInfo);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_foundImages[index].Variations = variationCollection;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;else<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_foundImages[index].Variations.Add(imageInfo);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;else<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;imageInfo.Variations = new ImageCollection();<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;imageInfo.Variations.Add(imageInfo);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;int currentIndex = _foundImages.Count;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;checkNames.Add(imageInfo.Title, currentIndex);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_foundImages.Add(imageInfo);</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;}<br />&nbsp;&nbsp;&nbsp;}<br />&nbsp;&nbsp;&nbsp;catch (OleDbException)<br />&nbsp;&nbsp;&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;// Not finding any results is ok.<br />&nbsp;&nbsp;&nbsp;}<br /></p>
<p>posted by jmazner</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/jmazner/How-to-Query-Vista-Search-From-Your-App#c632865961610000000</link>
		<pubDate>Thu, 22 Jun 2006 18:02:41 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/jmazner/How-to-Query-Vista-Search-From-Your-App#c632865961610000000</guid>
		<dc:creator>jmazner</dc:creator>
	</item>
	<item>
		<title>Re: How-to: Query Vista Search From Your App</title>
		<description>
			<![CDATA[For more details about how to use desktop search, check out <a href="http://blogs.msdn.com/cheller/archive/2006/06/21/642220.aspx">
Catherine Heller's excellent blog entry</a><p>posted by jmazner</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/jmazner/How-to-Query-Vista-Search-From-Your-App#c632866157730000000</link>
		<pubDate>Thu, 22 Jun 2006 23:29:33 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/jmazner/How-to-Query-Vista-Search-From-Your-App#c632866157730000000</guid>
		<dc:creator>jmazner</dc:creator>
	</item>
	<item>
		<title>Re: How-to: Query Vista Search From Your App</title>
		<description>
			<![CDATA[Is this going to be encapsulated in any way? I find it to rough to deal with the Windows database in this way.<br /><br />Btw. Is there a way to get the different columns of a document? I mean in the example with the pictures it is great, but for other documents?<p>posted by littleguru</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/jmazner/How-to-Query-Vista-Search-From-Your-App#c632866699840000000</link>
		<pubDate>Fri, 23 Jun 2006 14:33:04 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/jmazner/How-to-Query-Vista-Search-From-Your-App#c632866699840000000</guid>
		<dc:creator>littleguru</dc:creator>
	</item>
	<item>
		<title>Re: How-to: Query Vista Search From Your App</title>
		<description>
			<![CDATA[Good to see Ian's awesome screencast, but where can I get the source code of demo app shown in the video?<br /><br />Sheva<br /><p>posted by footballism</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/jmazner/How-to-Query-Vista-Search-From-Your-App#c632867432940000000</link>
		<pubDate>Sat, 24 Jun 2006 10:54:54 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/jmazner/How-to-Query-Vista-Search-From-Your-App#c632867432940000000</guid>
		<dc:creator>footballism</dc:creator>
	</item>
	<item>
		<title>Re: How-to: Query Vista Search From Your App</title>
		<description>
			<![CDATA[Let the sql injection begin:<br /><br />{&quot;The ICommandWithParameters interface is not supported by the 'Search.CollatorDSO.1' provider.&nbsp; Command parameters are unsupported with the current provider.&quot;}<p>posted by littleguru</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/jmazner/How-to-Query-Vista-Search-From-Your-App#c632867475550000000</link>
		<pubDate>Sat, 24 Jun 2006 12:05:55 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/jmazner/How-to-Query-Vista-Search-From-Your-App#c632867475550000000</guid>
		<dc:creator>littleguru</dc:creator>
	</item>
	<item>
		<title>Re: How-to: Query Vista Search From Your App</title>
		<description>
			<![CDATA[
<blockquote>
<div>footballism wrote:</div>
<div>&#65279;Good to see Ian's awesome screencast, but where can I get the source code of demo app shown in the video?<br /><br />Sheva<br /></div>
</blockquote>
<br /><br />Copy and past his second post?<p>posted by littleguru</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/jmazner/How-to-Query-Vista-Search-From-Your-App#c632867475950000000</link>
		<pubDate>Sat, 24 Jun 2006 12:06:35 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/jmazner/How-to-Query-Vista-Search-From-Your-App#c632867475950000000</guid>
		<dc:creator>littleguru</dc:creator>
	</item>
	<item>
		<title>Re: How-to: Query Vista Search From Your App</title>
		<description>
			<![CDATA[
<p>btw, how to extract/change metadata from files in Vista? <br /><br />EDIT: nevermind</p>
<p>posted by Ion Todirel</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/jmazner/How-to-Query-Vista-Search-From-Your-App#c632868919900000000</link>
		<pubDate>Mon, 26 Jun 2006 04:13:10 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/jmazner/How-to-Query-Vista-Search-From-Your-App#c632868919900000000</guid>
		<dc:creator>Ion Todirel</dc:creator>
	</item>
	<item>
		<title>Re: How-to: Query Vista Search From Your App</title>
		<description>
			<![CDATA[this video file is corrupted. it starts choppy &amp; then stalls. why? maybe C9 should be using a standard format like isma.tv<p>posted by zahadum</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/jmazner/How-to-Query-Vista-Search-From-Your-App#c632880636340000000</link>
		<pubDate>Sun, 09 Jul 2006 17:40:34 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/jmazner/How-to-Query-Vista-Search-From-Your-App#c632880636340000000</guid>
		<dc:creator>zahadum</dc:creator>
	</item>
	<item>
		<title>Re: How-to: Query Vista Search From Your App</title>
		<description>
			<![CDATA[Great sample, thanks for sharing it.<br /><br />The query is searching in the Windows Index database (FROM SYSTEMINDEX..SCOPE). <br />If, let's say, I don't have my D: drive indexed, how do I perform a search on this drive as well. There is possible to have a syntax like this:<br /><br />SELECT &quot;System.FileName&quot; FROM &quot;D:\&quot;..etc?<br /><br />Thanks,<br />Alin<p>posted by alinc</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/jmazner/How-to-Query-Vista-Search-From-Your-App#c632949678910000000</link>
		<pubDate>Wed, 27 Sep 2006 15:31:31 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/jmazner/How-to-Query-Vista-Search-From-Your-App#c632949678910000000</guid>
		<dc:creator>alinc</dc:creator>
	</item>
	<item>
		<title>Re: How-to: Query Vista Search From Your App</title>
		<description>
			<![CDATA[
<p>I tried with a similar code. I was able to get the column name with reader.GetName(0) but the result set was not found. that is , when i say reader.GetString(0), i get the error saying there is no data in the row/column. i tried out with different keywords
 but still the same result. I also tried using the same keyword in the WDS, then i got some results. My prob is i am not able to get the same result programmatically. The query i am using is:<br /><br />SELECT DocTitle FROM systemindex..scope() WHERE CONTAINS('&quot; &#43; &quot;Choose&quot; &#43; &quot;')&quot;.<br /><br />here i am searching for the keyword &quot;Choose&quot;.<br /><br />can neone pls help me on this..</p>
<p>posted by shashanka_d</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/jmazner/How-to-Query-Vista-Search-From-Your-App#c632985091730000000</link>
		<pubDate>Tue, 07 Nov 2006 15:12:53 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/jmazner/How-to-Query-Vista-Search-From-Your-App#c632985091730000000</guid>
		<dc:creator>shashanka_d</dc:creator>
	</item>
	<item>
		<title>Re: How-to: Query Vista Search From Your App</title>
		<description>
			<![CDATA[
<p>It's not working with me. I wonder what is wrong with my computer. <a title="Steam Generator Irons" href="http://www.comparesteamgeneratorirons.co.uk/" target="_blank">
Steam Generator Irons</a></p>
<p>posted by JoyceSachs</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/jmazner/How-to-Query-Vista-Search-From-Your-App#c634154613780000000</link>
		<pubDate>Fri, 23 Jul 2010 05:56:18 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/jmazner/How-to-Query-Vista-Search-From-Your-App#c634154613780000000</guid>
		<dc:creator>JoyceSachs</dc:creator>
	</item>
	<item>
		<title>Re: How-to: Query Vista Search From Your App</title>
		<description>
			<![CDATA[
<p>@JoeySachs that's becuase you have windows 7 not windows vista maybe. <strong>
<a href="http://www.mobilephonerecyclingshop.co.uk/">Mobile Phone Recycling</a></strong></p>
<p>posted by son2best</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/jmazner/How-to-Query-Vista-Search-From-Your-App#c634161885670000000</link>
		<pubDate>Sat, 31 Jul 2010 15:56:07 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/jmazner/How-to-Query-Vista-Search-From-Your-App#c634161885670000000</guid>
		<dc:creator>son2best</dc:creator>
	</item>
</channel>
</rss>