<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" media="screen" href="/App_Themes/default/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:evnet="http://www.mscommunities.com/rssmodule/"><channel><title>Entries for David7738</title><atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/niners/david7738/rss/default.aspx" /><image><url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url><title>Entries for David7738</title><link>http://channel9.msdn.com/Niners/david7738/</link></image><description>Entries, comments and threads posted by David7738</description><link>http://channel9.msdn.com/Niners/david7738/</link><language>en-us</language><pubDate>Sat, 19 Apr 2008 06:33:34 GMT</pubDate><lastBuildDate>Sat, 19 Apr 2008 06:33:34 GMT</lastBuildDate><generator>EvNet (EvNet, Version=1.0.3608.3122, Culture=neutral, PublicKeyToken=null)</generator><item><title>WTF!! Runs on development computer only [WTF!! Runs on development computer only]</title><description>&lt;span class="value"&gt; wrote a console application c++ program using
VS2008. It is nothing more than a "Hello World". I copied the .exe to a
flash drive and then onto another XP computer. When I try to execute it
says "This application has failed to start because the application
configuration is incorrect". So then I tried copying it over using MSN
and when I execute it now says "Windows cannot access the specified
deivce, path or file. You many not have the appropriate permissions to
access the item.&lt;br&gt;&lt;br&gt;I have administrator privledges so I should be able to execute it.&lt;br&gt;&lt;br&gt;Any ideas?&lt;/span&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/397986-WTF-Runs-on-development-computer-only/'&gt;WTF!! Runs on development computer only&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/397986/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/397986-WTF-Runs-on-development-computer-only/</comments><link>http://channel9.msdn.com/forums/TechOff/397986-WTF-Runs-on-development-computer-only/</link><pubDate>Sat, 19 Apr 2008 06:33:34 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/397986-WTF-Runs-on-development-computer-only/</guid><evnet:views>1553</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/397986/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>&lt;span class="value"&gt; wrote a console application c++ program using
VS2008. It is nothing more than a "Hello World". I copied the .exe to a
flash drive and then onto another XP computer. When I try to execute it
says "This application has failed to start because the application
configuration is incorrect". So then I tried copying it over using MSN
and when I execute it now says "Windows cannot access the specified
deivce, path or file. You many not have the appropriate permissions to
access the item.&lt;br&gt;&lt;br&gt;I have administrator privledges so I should be able to execute it.&lt;br&gt;&lt;br&gt;Any ideas?&lt;/span&gt;</evnet:previewtext><dc:creator>David7738</dc:creator><slash:comments>11</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/397986-WTF-Runs-on-development-computer-only/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/397986/Trackback.aspx</trackback:ping></item><item><title>Hide Vista Start Button (any suggestions) ??? [Hide Vista Start Button (any suggestions) ???]</title><description>&lt;span class="value"&gt;,I could make startbutton disable with API Enablewindow in vista.&lt;br&gt;However my client ordered to hide startbutton....&lt;br&gt;I cannot find answer why Showwindow with SW_HIDE work just making start icon smaller. &lt;br&gt;this is my code,using listbox to enumerate all top-level windows.&lt;br&gt;&lt;br&gt;&amp;nbsp;Private Declare Function ShowWindow Lib "user32.dll" (ByVal hWnd As Integer, ByVal nCmdShow As Integer) As Integer&lt;br&gt;&amp;nbsp; &amp;nbsp; Const SW_HIDE As Integer = 0&lt;br&gt;&amp;nbsp; &amp;nbsp; Const SW_SHOW As Integer = 5&lt;br&gt;&lt;br&gt;'Get the process ID of the Explorer process that owns the task bar&lt;br&gt;&amp;nbsp; &amp;nbsp;target_hwnd1 = FindWindow("Shell_traywnd", "")&lt;br&gt;&amp;nbsp; &amp;nbsp;Call GetWindowThreadProcessId(target_hwnd1, target_process_id1)&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;hwnd = FindWindow(vbNullString, sTitle)&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Call GetWindowThreadProcessId(hwnd, process_id)&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; If process_id = target_process_id1 Then&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; cch = GetWindowTextLength(hwnd)&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; cch = cch * 2&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Temp = New String(Chr(0), cch)&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'get the windows caption&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Call GetWindowText(hwnd, Temp, Len(Temp))&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; If InStr(Temp, "start") &amp;gt; 0 And InStr(Temp, "menu") &amp;lt;= 0 Then&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; If Button1.Text = "Hide" Then&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Wint = ShowWindow(hwnd, SW_HIDE)&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Button1.Text = "Show"&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Else&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Wint = ShowWindow(hwnd, SW_SHOW)&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Button1.Text = "Hide"&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; End If&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; End If&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; End If&lt;br&gt;&lt;/span&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/259907-Hide-Vista-Start-Button-any-suggestions-/'&gt;Hide Vista Start Button (any suggestions) ???&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/259907/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/259907-Hide-Vista-Start-Button-any-suggestions-/</comments><link>http://channel9.msdn.com/forums/TechOff/259907-Hide-Vista-Start-Button-any-suggestions-/</link><pubDate>Thu, 27 Dec 2007 08:31:48 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/259907-Hide-Vista-Start-Button-any-suggestions-/</guid><evnet:views>4559</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/259907/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>&lt;span class="value"&gt;,I could make startbutton disable with API Enablewindow in vista.&lt;br&gt;However my client ordered to hide startbutton....&lt;br&gt;I cannot find answer why Showwindow with SW_HIDE work just making start icon smaller. &lt;br&gt;this is my code,using listbox to enumerate all top-level windows.&lt;br&gt;&lt;br&gt;&amp;nbsp;Private Declare Function ShowWindow Lib "user32.dll" (ByVal hWnd As Integer, ByVal nCmdShow As Integer) As Integer&lt;br&gt;&amp;nbsp; &amp;nbsp; Const SW_HIDE As Integer = 0&lt;br&gt;&amp;nbsp; &amp;nbsp; Const SW_SHOW As Integer = 5&lt;br&gt;&lt;br&gt;'Get the process ID of the Explorer process that owns the task bar&lt;br&gt;</evnet:previewtext><dc:creator>David7738</dc:creator><slash:comments>9</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/259907-Hide-Vista-Start-Button-any-suggestions-/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/259907/Trackback.aspx</trackback:ping></item><item><title>Stop the Insanity [Stop the Insanity]</title><description>This is not a social commentary site, yet increasingly we see personal attacks and social commentary threads. Religion, politics, and social issiues have no place here.&lt;BR&gt;&lt;BR&gt;This is a Microsoft site ergo threads or commentary on other operating systems are just noise that have no place here.&lt;BR&gt;&lt;BR&gt;Well that's my 2 cents on what I think is of value on this site and why I frequent it.&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/254744-Stop-the-Insanity/'&gt;Stop the Insanity&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/254744/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/254744-Stop-the-Insanity/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/254744-Stop-the-Insanity/</link><pubDate>Wed, 16 May 2007 04:27:14 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/254744-Stop-the-Insanity/</guid><evnet:views>5865</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/254744/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>This is not a social commentary site, yet increasingly we see personal attacks and social commentary threads. Religion, politics, and social issiues have no place here.&lt;BR&gt;&lt;BR&gt;This is a Microsoft site ergo threads or commentary on other operating systems are just noise that have no place here.&lt;BR&gt;&lt;BR&gt;Well that's my 2 cents on what I think is of value on this site and why I frequent it.</evnet:previewtext><dc:creator>David7738</dc:creator><slash:comments>17</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/254744-Stop-the-Insanity/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/254744/Trackback.aspx</trackback:ping></item><item><title>Windows Media Player 11 Available [Windows Media Player 11 Available]</title><description>&lt;P&gt;Windows Media Player 11 is available on Softpedia before it is available on Microsoft Download sites &lt;/P&gt;
&lt;P&gt;&lt;a href="http://www.softpedia.com/progDownload/Microsoft-Windows-Media-Player-11-Download-39801.html"&gt;http://www.softpedia.com/progDownload/Microsoft-Windows-Media-Player-11-Download-39801.html&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Use the RO site as it is a LOT faster.&amp;nbsp; WGA is required&lt;/P&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/188229-Windows-Media-Player-11-Available/'&gt;Windows Media Player 11 Available&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/188229/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/188229-Windows-Media-Player-11-Available/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/188229-Windows-Media-Player-11-Available/</link><pubDate>Sun, 14 May 2006 04:23:04 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/188229-Windows-Media-Player-11-Available/</guid><evnet:views>66670</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/188229/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>&lt;P&gt;Windows Media Player 11 is available on Softpedia before it is available on Microsoft Download sites &lt;/P&gt;
&lt;P&gt;&lt;a href="http://www.softpedia.com/progDownload/Microsoft-Windows-Media-Player-11-Download-39801.html"&gt;http://www.softpedia.com/progDownload/Microsoft-Windows-Media-Player-11-Download-39801.html&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Use the RO site as it is a LOT faster.&amp;nbsp; WGA is required&lt;/P&gt;</evnet:previewtext><dc:creator>David7738</dc:creator><slash:comments>109</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/188229-Windows-Media-Player-11-Available/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/188229/Trackback.aspx</trackback:ping></item><item><title>WEB Forums vs Classic BBS (or the Dark Ages of Forums) [WEB Forums vs Classic BBS (or the Dark Ages of Forums)]</title><description>First I'll get a rant off my chest: Why are web forums so archaic when compared to a good old Bulletin Board Systems Software?&lt;BR&gt;&lt;BR&gt;On my Pcboard Bulletin Board systems we had forums, private areas, gaming areas, etc.&lt;BR&gt;&lt;BR&gt;My rant is about returning to a site where you left off and the site knowing about which areas you are interested in, unread messages, and so forth. &lt;BR&gt;&lt;BR&gt;For instance when I logon to the site I have no idea of which of the areas have new messages or threaded messages.&lt;BR&gt;&lt;BR&gt;The normal answer is that web sites are asynchronous objects while a bulletin board was synchronous. &lt;BR&gt;&lt;BR&gt;Similarities: logon (so the user can configure username and the site can save users information.&amp;nbsp; Members can be configured to get special area access while non-members cannot.&lt;BR&gt;&lt;BR&gt;host machine (server) maintains records of users selected areas and last read messages pointer. &lt;BR&gt;&lt;BR&gt;Major differences: bbs: 1 -1 software/user ratio webserver: 1 to many.&lt;BR&gt;&lt;BR&gt;Could not this 1 to many ratio not be offset by using a cookie on the clients macihne and the server recieving this clients token querying its database and retrieving the last read message pointers this way when one logs into a site and is presented with the index.htm the user could be presented with a list of subscribed areas and a notification of the # of new messages/threads in that area?&lt;BR&gt;&lt;BR&gt;As it stands today when I log into a website running a forum software I have to try and remember where I was the last time I had logged in.&amp;nbsp; I can't selectively ignore a specific user.. Say for instance, W3BBO (just using you as an example, no slight intended or implied) and I have a beef or IMHO he's an idiot and I want to just ignore that user (both online prescense and messages or threads started by that user)&amp;nbsp; with the bbs software this was included, web based it is not usually a function provided.&lt;BR&gt;&lt;BR&gt;Biggest difference was BBS software was text based and the user was generally led through a series of configureable by sysop menu system where web based the option exists for the user to jump around and bypass menus by manually going to a specific url.&lt;BR&gt;&lt;BR&gt;Are we held up because of a scaling issue here?&amp;nbsp; My BBS was limited to the # of phone lines and modems I could afford and I maxed out to approx 150 users at a time could be logged in. Each node only needed roughly the speed of a 8mhz PC XT to run the bbs software and handle the client requests but the database machine had to be a lot beefier and have FAST hard drives.&amp;nbsp; If I wanted I could run many virtual clients on my 386/486 machines using desqview (pre Windows era).&lt;BR&gt;&lt;BR&gt;Today with much faster machines, connectivity, and other advances in technology I'm finding that as a user we are in the Vic20 dark ages of forum software.&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/168132-WEB-Forums-vs-Classic-BBS-or-the-Dark-Ages-of-Forums/'&gt;WEB Forums vs Classic BBS (or the Dark Ages of Forums)&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/168132/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/168132-WEB-Forums-vs-Classic-BBS-or-the-Dark-Ages-of-Forums/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/168132-WEB-Forums-vs-Classic-BBS-or-the-Dark-Ages-of-Forums/</link><pubDate>Fri, 17 Mar 2006 14:28:40 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/168132-WEB-Forums-vs-Classic-BBS-or-the-Dark-Ages-of-Forums/</guid><evnet:views>6072</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/168132/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>First I'll get a rant off my chest: Why are web forums so archaic when compared to a good old Bulletin Board Systems Software?&lt;BR&gt;&lt;BR&gt;On my Pcboard Bulletin Board systems we had forums, private areas, gaming areas, etc.&lt;BR&gt;&lt;BR&gt;My rant is about returning to a site where you left off and the site knowing about which areas you are interested in, unread messages, and so forth. &lt;BR&gt;&lt;BR&gt;For instance when I logon to the site I have no idea of which of the areas have new messages or threaded messages.&lt;BR&gt;&lt;BR&gt;The normal answer is that web sites are asynchronous objects while a bulletin board was synchronous. &lt;BR&gt;&lt;BR&gt;</evnet:previewtext><dc:creator>David7738</dc:creator><slash:comments>3</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/168132-WEB-Forums-vs-Classic-BBS-or-the-Dark-Ages-of-Forums/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/168132/Trackback.aspx</trackback:ping></item><item><title>Re: All your BitLocker are belong to us [Re: All your BitLocker are belong to us]</title><description>Personally I wish that all private data was encrypted somewhere, somehow.. it could be as simple as just a bit inversion. As long as the method is 'secret' or part of it is 'secret' .. this way when laptops get lost/stolen, or someone cracks into a website that the 'users' data is not compromised.&amp;nbsp; At least once a month I hear about thousands of users data has been compromised in an unencrpyted format.. once this data is out in the wild it could be used years from now.. it isn't that often that your mothers maiden name changes, or your date of birth, location of birth, SIN (SSN for you Yanks) and so forth. I may change bank accounts, change credit cards, but the underlying data wont change. &lt;BR&gt;&lt;BR&gt;use a strong login and admin password on your machine and use the efs that is available on windows xp pro to protect things. At least that is a start. &lt;BR&gt;&lt;BR&gt;I applaud bitlocker and PGP and any other encryption method to be used by others that store my personal data. Especially if this database *(file)* is very attractive to others since it contains not just my data but the data of many others.&lt;p&gt;in reply to &lt;a href=''&gt;Re: All your BitLocker are belong to us&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/344010/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments></comments><link></link><pubDate>Sat, 04 Mar 2006 14:52:21 GMT</pubDate><guid isPermaLink="false"></guid><evnet:views>20</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/344010/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Personally I wish that all private data was encrypted somewhere, somehow.. it could be as simple as just a bit inversion. As long as the method is 'secret' or part of it is 'secret' .. this way when laptops get lost/stolen, or someone cracks into a website that the 'users' data is not&amp;#8230;</evnet:previewtext><dc:creator>David7738</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://channel9.msdn.com/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/344010/Trackback.aspx</trackback:ping></item><item><title>Microsoft Anti-Spyware rebranded Microsoft Defender [Microsoft Anti-Spyware rebranded Microsoft Defender]</title><description>&lt;P&gt;As of Feb 17. Microsoft released Beta2 of their antipyware product and renamed it Microsoft Defender (to align the product with the Vista product)..&lt;BR&gt;&lt;BR&gt;Large changes in the user interface.&lt;BR&gt;&lt;BR&gt;I still can't get remnants of their live product off of my system though.&lt;/P&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/160134-Microsoft-Anti-Spyware-rebranded-Microsoft-Defender/'&gt;Microsoft Anti-Spyware rebranded Microsoft Defender&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/160134/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/160134-Microsoft-Anti-Spyware-rebranded-Microsoft-Defender/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/160134-Microsoft-Anti-Spyware-rebranded-Microsoft-Defender/</link><pubDate>Sun, 19 Feb 2006 11:57:48 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/160134-Microsoft-Anti-Spyware-rebranded-Microsoft-Defender/</guid><evnet:views>11323</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/160134/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>&lt;P&gt;As of Feb 17. Microsoft released Beta2 of their antipyware product and renamed it Microsoft Defender (to align the product with the Vista product)..&lt;BR&gt;&lt;BR&gt;Large changes in the user interface.&lt;BR&gt;&lt;BR&gt;I still can't get remnants of their live product off of my system though.&lt;/P&gt;</evnet:previewtext><dc:creator>David7738</dc:creator><slash:comments>6</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/160134-Microsoft-Anti-Spyware-rebranded-Microsoft-Defender/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/160134/Trackback.aspx</trackback:ping></item></channel></rss>