<?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"
	>

<channel>
	<title>Brandon Live!</title>
	<atom:link href="http://brandonlive.com/feed" rel="self" type="application/rss+xml" />
	<link>http://brandonlive.com</link>
	<description>Brandon Paddock on Search and more.</description>
	<pubDate>Sun, 27 Apr 2008 09:10:10 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Getting the shell to run an application for you - Part 2: How</title>
		<link>http://brandonlive.com/2008/04/27/getting-the-shell-to-run-an-application-for-you-part-2-how/</link>
		<comments>http://brandonlive.com/2008/04/27/getting-the-shell-to-run-an-application-for-you-part-2-how/#comments</comments>
		<pubDate>Sun, 27 Apr 2008 09:07:04 +0000</pubDate>
		<dc:creator>Brandon</dc:creator>
		
		<category><![CDATA[Windows Shell]]></category>

		<category><![CDATA[Windows Vista]]></category>

		<guid isPermaLink="false">http://brandonlive.com/2008/04/27/getting-the-shell-to-run-an-application-for-you-part-2-how/</guid>
		<description><![CDATA[The key to getting Explorer to do your dirty work lies in the IShellDispatch2 interface.&#160; Particular, the ShellExecute method.&#160; 
IShellDispatch2 is one of the shell automation objects used to support scripting languages.&#160; However, that doesn&#8217;t mean you have to use VBScript to gain some value from it.&#160; In this case, IShellDispatch2::ShellExecute is exactly what we [...]]]></description>
			<content:encoded><![CDATA[<p>The key to getting Explorer to do your dirty work lies in the IShellDispatch2 interface.&#160; Particular, the <a href="http://msdn2.microsoft.com/en-us/library/bb774148(VS.85).aspx">ShellExecute method</a>.&#160; </p>
<p>IShellDispatch2 is one of the shell automation objects used to support scripting languages.&#160; However, that doesn&#8217;t mean you have to use VBScript to gain some value from it.&#160; In this case, IShellDispatch2::ShellExecute is exactly what we want, because it wraps the normal ShellExecute call but runs it from the context of the object implementing the interface - in this case, we want the IShellDispatch2 associated with the desktop shell.</p>
<p>Knowing this is only half the battle, though.&#160; The next trick is to figure out just how to get to the right IShellDispatch2 object (the one for the desktop shell instance of Explorer.exe).</p>
<p>Fortunately, one of our architects, Chris Guzak (<a href="http://channel9.msdn.com/Showpost.aspx?postid=183919">seen on C9 here</a>), was able to point me in the right direction and connect up all the dots.</p>
<p>Our hunt begins with the IShellWindows interface, which can be used not only to reliably find the HWND for the desktop shell window, but also to get an IDispatch interface for it:</p>
<blockquote><p>IShellWindows *psw;     <br />&#160;&#160;&#160; HRESULT hr = CoCreateInstance(CLSID_ShellWindows, NULL, CLSCTX_LOCAL_SERVER, IID_PPV_ARGS(&amp;psw));      <br />&#160;&#160;&#160; if (SUCCEEDED(hr))      <br />&#160;&#160;&#160; {      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; HWND hwnd;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; IDispatch* pdisp;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; VARIANT vEmpty = {}; // VT_EMPTY      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if (S_OK == psw-&gt;FindWindowSW(&amp;vEmpty, &amp;vEmpty, SWC_DESKTOP, (long*)&amp;hwnd, SWFO_NEEDDISPATCH, &amp;pdisp))      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; {</p>
</blockquote>
<p>Next, we need the IShellBrowser interface, and we get that by querying for IServiceProvider and asking the SID_STopLevelBrowser service for an IShellBrowser interface.&#160; And from there we can get the IShellView.</p>
<blockquote><p>IShellBrowser *psb;     </p>
<p>hr = IUnknown_QueryService(pdisp, SID_STopLevelBrowser, IID_PPV_ARGS(&amp;psb));     <br />if (SUCCEEDED(hr))       <br />{      <br />&#160;&#160;&#160; IShellView *psv;      <br />&#160;&#160;&#160; hr = psb-&gt;QueryActiveShellView(&amp;psv);</p>
</blockquote>
<p>From there we need to get to that IShellDispatch2 interface that started this whole adventure.&#160; </p>
<blockquote><p>IDispatch *pdispBackground;     <br />HRESULT hr = psv-&gt;GetItemObject(SVGIO_BACKGROUND, IID_PPV_ARGS(&amp;pdispBackground));      <br />if (SUCCEEDED(hr))      <br />{      <br />&#160;&#160;&#160; IShellFolderViewDual *psfvd;      <br />&#160;&#160;&#160; hr = pdispBackground-&gt;QueryInterface(IID_PPV_ARGS(&amp;psfvd));      <br />&#160;&#160;&#160; if (SUCCEEDED(hr))      <br />&#160;&#160;&#160; {      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; IDispatch *pdisp;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; hr = psfvd-&gt;get_Application(&amp;pdisp);      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if (SUCCEEDED(hr))      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; {      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; IShellDispatch2 *psd;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; hr = pdisp-&gt;QueryInterface(IID_PPV_ARGS(&amp;psd));</p>
</blockquote>
<p>At this point you should be able to figure out where to go from here.</p>
<p>If that&#8217;s not easy enough, watch out for Part 3 of this series in the next day or two.&#160; It will contain a sample and describe how the Start++ installer makes use of it.</p>
]]></content:encoded>
			<wfw:commentRss>http://brandonlive.com/2008/04/27/getting-the-shell-to-run-an-application-for-you-part-2-how/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Getting the shell to run an application for you - Part 1: Why</title>
		<link>http://brandonlive.com/2008/04/26/getting-the-shell-to-run-an-application-for-you-part-1-why/</link>
		<comments>http://brandonlive.com/2008/04/26/getting-the-shell-to-run-an-application-for-you-part-1-why/#comments</comments>
		<pubDate>Sun, 27 Apr 2008 00:39:23 +0000</pubDate>
		<dc:creator>Brandon</dc:creator>
		
		<category><![CDATA[Windows Shell]]></category>

		<category><![CDATA[Windows Vista]]></category>

		<guid isPermaLink="false">http://brandonlive.com/2008/04/26/getting-the-shell-to-run-an-application-for-you-part-1-why/</guid>
		<description><![CDATA[Some people seem to think that calling ShellExecute or ShellExecuteEx and passing the path to an executable will have the effect of telling the shell to launch an application for you.  However, that&#8217;s not quite what happens.  These functions simply allow your application to take an action (like launching a process) in the manner the [...]]]></description>
			<content:encoded><![CDATA[<p>Some people seem to think that calling <a href="http://msdn2.microsoft.com/en-us/library/bb762153(VS.85).aspx">ShellExecute</a> or <a href="http://msdn2.microsoft.com/en-us/library/bb762154(VS.85).aspx">ShellExecuteEx</a> and passing the path to an executable will have the effect of telling the shell to launch an application for you.  However, that&#8217;s not quite what happens.  These functions simply allow your application to take an action (like launching a process) in the <em>manner</em> the shell typically would (for instance, recreating the behavior of using the Run box).</p>
<p>What&#8217;s the difference?  Well, child processes inherit <a href="http://msdn2.microsoft.com/en-us/library/ms683463(VS.85).aspx">several things from their parents.</a>  They inherit processor affinity, for example.  Most important these days, it seems, is the fact that processes inherit Integrity Level from the process that started them.  That is, except in the case of elevation from medium to high IL (the operation that causes the UAC dialog to appear).</p>
<p>So let&#8217;s say you write an installer, and you want to run the application installed at the end of the installation process.  Or heck, maybe you just want to call the application once with a special &#8220;/setup&#8221; parameter that tells it to do something you couldn&#8217;t do from your chosen setup utility.</p>
<p>Where do problems begin?  Well, installers typically run with admin rights.  When your installer launches your application as a convenience to the user, it&#8217;s now running with admin rights.  The primary concern here isn&#8217;t even the security implications of running at high IL.  After all, the next time your program starts it will run at its normal privilege level.</p>
<p>The problem is that your program is now running in a manner you may not have accounted for when writing it.  For example, users won&#8217;t be able to drag-and-drop anything to your application from normal processes.  If your program interacts with other non-admin processes, you may face other problems.  My own Start++ application faced this problem, as it needs to inject a small amount of code into Explorer.exe and then communicate with that code to coordinate its magic.  It can&#8217;t do this when running as an admin.</p>
<p>The recent 0.8.x release of Start++ solved this issue, and Start++ now runs immediately after install, in the proper non-admin context.  This is accomplished by having Explorer launch the application on the installer&#8217;s behalf. </p>
<p>Others have addressed this problem in the past.  However, the proposed solutions always seem to take one of these forms:</p>
<ol>
<li><a href="http://msdn2.microsoft.com/en-us/magazine/cc163486.aspx#S15">Write an invoker process that runs with non-admin privileges, starts the elevated installer, and then runs your app at the end.</a></li>
<li>Use the task scheduler to launch the app.</li>
<li><a href="http://www.codeproject.com/KB/vista-security/RunNonElevated.aspx">Inject some code into Explorer and launch from there.</a></li>
</ol>
<p>I don&#8217;t like #1 because it&#8217;s cumbersome and <a href="http://blogs.msdn.com/uac/archive/2006/01/13/512776.aspx">limits how you can name your installer</a>.</p>
<p>#2 also seems cumbersome to me, and is a bit hacky.</p>
<p>#3 is totally hacky, and not something I trust people to do without accidentally destabilizing Explorer (there&#8217;s a reason the code Start++ injects into Explorer is incredibly tiny and <em>very </em>carefully crafted).  It can also introduce complications when dealing with multiple target platforms (x86 versus x64).  For example, the CodeProject sample linked to above doesn&#8217;t even restrict its WH_CALLWNDPROCRET hook to the thread that it&#8217;s targetting.  That means this hook code is immediately going to be loaded by <strong>every process on the desktop with a window</strong>.  Yuck.</p>
<p>Fortunately, there is a better way.</p>
<p>In <a href="http://brandonlive.com/2008/04/27/getting-the-shell-to-run-an-application-for-you-part-2-how/">Part 2, I describe a better way to get Explorer to run code for you</a>, without having to inject anything into Explorer or use cumbersome workarounds like those described above.</p>
]]></content:encoded>
			<wfw:commentRss>http://brandonlive.com/2008/04/26/getting-the-shell-to-run-an-application-for-you-part-1-why/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New Start++ update</title>
		<link>http://brandonlive.com/2008/04/23/new-start-update-2/</link>
		<comments>http://brandonlive.com/2008/04/23/new-start-update-2/#comments</comments>
		<pubDate>Wed, 23 Apr 2008 07:42:44 +0000</pubDate>
		<dc:creator>Brandon</dc:creator>
		
		<category><![CDATA[Start++]]></category>

		<guid isPermaLink="false">http://brandonlive.com/2008/04/23/new-start-update-2/</guid>
		<description><![CDATA[I posted this on BrandonTools.com yesterday, and figured I may as well copy it here.
It&#8217;s been a long time since I&#8217;ve released an update to Start++.  Since then I&#8217;ve been working sporadically on a major overhaul to Start++, which will likely be released as version 2.0.  However, due to time constraints imposed by my real [...]]]></description>
			<content:encoded><![CDATA[<p>I posted this on BrandonTools.com yesterday, and figured I may as well copy it here.</p>
<blockquote><p>It&#8217;s been a long time since I&#8217;ve released an update to Start++.  Since then I&#8217;ve been working sporadically on a major overhaul to Start++, which will likely be released as version 2.0.  However, due to time constraints imposed by my real job, and the fact that I have lots of ideas and no PMs to tell me which ones are actually worth implementing - it will likely take a while longer for that to see the light of day.</p>
<p>So in the meantime, I decided to backport several of the fixes I have made in the 2.0 branch.  This does not address <em>all</em> of the known issues with the last update, but I think it provides several worthwhile enhancements.  These include:</p>
<ul>
<li>Better responsiveness to queries for Start Gadgets</li>
<li>Fewer intermediate Gadget updates while you&#8217;re typing, no longer a chance of &#8220;lost characters&#8221;</li>
<li>Better keyboard and mouse interaction with Start Gadgets</li>
<li>Fixed the default Dictionary gadget to have an OnSubmit handler as it was meant to</li>
<li>Fixed the calculator gadget (and problems with any gadgets that use OnSubmit but have SubmitNewWindow set to false)</li>
<li>Small UI clean-up for gadget rendering</li>
<li>Fixed tab ordering for most of the configuration UI</li>
<li>Fixed focus of UAC prompts when using commands like &#8220;sudo&#8221; from the start menu if the Secure Desktop switch is disabled</li>
</ul>
<p>That last one is tricky, but this fix seems to work well.  Unfortunately, I discovered today that it only works if the Secure Desktop switch is disabled (as you might guess, that&#8217;s how I run most of my systems).  This is unfortunate, but hopefully something I can fix in a future update.</p>
<p>Also, the installer is back to its leaner size of 1.2MB or so.  This coincides with a change to ensure the hook installation issue from the past never returns.  The installer no longer includes the merge modules for the 32-bit and 640bit C++ runtimes as the hook DLL now statically links the CRT.</p>
<p>As always, your feedback is appreciated.</p></blockquote>
<p><a href="http://brandontools.com/content/StartPlusPlus.aspx">More info and download link here.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://brandonlive.com/2008/04/23/new-start-update-2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Tech journalism is dead to me</title>
		<link>http://brandonlive.com/2008/04/11/tech-journalism-is-dead-to-me/</link>
		<comments>http://brandonlive.com/2008/04/11/tech-journalism-is-dead-to-me/#comments</comments>
		<pubDate>Sat, 12 Apr 2008 00:38:49 +0000</pubDate>
		<dc:creator>Brandon</dc:creator>
		
		<category><![CDATA[Apple]]></category>

		<category><![CDATA[Microsoft]]></category>

		<category><![CDATA[Windows Vista]]></category>

		<guid isPermaLink="false">http://brandonlive.com/2008/04/11/tech-journalism-is-dead-to-me/</guid>
		<description><![CDATA[Gary Morgenthaler of Business Week is the latest in a series of tech journalists to really disappoint me.&#160; Why?&#160; Just look at his latest rubbish posted on Business Week&#8217;s website today.
Consider the following paragraph and tell me that bias and sensationalism haven&#8217;t taken over tech &#8220;journalism.&#8221;
With last year&#8217;s arrival of Vista, Windows has swollen to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.businessweek.com/bios/Gary_Morgenthaler.htm">Gary Morgenthaler</a> of Business Week is the latest in a series of tech journalists to really disappoint me.&nbsp; Why?&nbsp; Just look at <a href="http://www.businessweek.com/technology/content/apr2008/tc20080410_206881.htm">his latest rubbish posted on Business Week&#8217;s website today</a>.</p>
<p>Consider the following paragraph and tell me that bias and sensationalism haven&#8217;t taken over tech &#8220;journalism.&#8221;</p>
<blockquote><p>With last year&#8217;s arrival of Vista, Windows has swollen to 1 billion bytes (a gigabyte) or more of software code. The &#8220;Mach&#8221; kernel of the Mac OS X, however, requires less than 1 million bytes (a megabyte) of data in its smallest configuration, expanding modestly with the sophistication of the application. </p>
</blockquote>
<p>So the iPhone kernel is smaller than all of Vista and its included applications.&nbsp; Sound the alarm, get the president on the line, this is huge news.</p>
<p>What Gary forgets is that the CPU of my Dell workstation is hundreds if not thousands of times smaller than an entire Mac Pro.&nbsp; I think, advantage Dell.</p>
<p>Of course I&#8217;m joking, these comparisons are absurd.&nbsp; Yet in the very next sentence Gary piles on the bull crap.</p>
<blockquote><p>This bloating has saddled Vista users with increased costs and poor performance on average computers.</p>
</blockquote>
<p>If you look at <a href="http://www.apple.com/macosx/techspecs/">Apple&#8217;s own website</a>, they state that Leopard requires 9GB of available disk space to install.&nbsp; Not surprisingly, this is almost exactly the same amount of space required for Windows Vista.&nbsp; But how can that be?&nbsp; Windows is bloated!&nbsp; OS X is not!&nbsp; We know these things, and working backward from this knowledge we can&#8217;t possibly come to the conclusion that they&#8217;re both just about the same size.&nbsp; So why bother with the facts at all when you can work backward from what you want to be true?</p>
<p>The facts, in fact, are even worse for Gary&#8217;s argument than you might think.&nbsp; You see, while Leopard and Vista require about the same amount of disk space to install to, one of them does have a far larger kernel image than the other.</p>
<p>The more portly of which is by far OS X.&nbsp; I just rebooted my Macbook into Leopard to see just how large the kernel was.&nbsp; The Mach kernel alone, which is only part of the OS X kernel, is 10MB in size.</p>
<p>So how big is the 64-bit Vista kernel on my desktop machine?&nbsp; 4.5MB</p>
<p>But this is hardly a fair comparison.&nbsp; After all, that&#8217;s the size of a 64-bit Windows kernel.&nbsp; We can&#8217;t reasonably compare it to a 32-bit Mac OS kernel (there is no 64-bit Mac OS kernel at the time of this writing).&nbsp; So what about the 32-bit Vista one?&nbsp; That weighs in at a <em>massive</em> 3.4MB.</p>
<p>Alright, the sensationalist &#8220;journalists&#8221; have won me over.&nbsp; Come on NT guys, 3.4MB?&nbsp; In 2008?&nbsp; What&#8217;s with all the bloat?</p>
]]></content:encoded>
			<wfw:commentRss>http://brandonlive.com/2008/04/11/tech-journalism-is-dead-to-me/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Windows Search Indexer Status Gadget</title>
		<link>http://brandonlive.com/2008/04/09/windows-search-indexer-status-gadget/</link>
		<comments>http://brandonlive.com/2008/04/09/windows-search-indexer-status-gadget/#comments</comments>
		<pubDate>Thu, 10 Apr 2008 03:10:37 +0000</pubDate>
		<dc:creator>Brandon</dc:creator>
		
		<category><![CDATA[Desktop Search]]></category>

		<category><![CDATA[Life of Brandon]]></category>

		<category><![CDATA[Microsoft]]></category>

		<category><![CDATA[News]]></category>

		<category><![CDATA[WS4]]></category>

		<category><![CDATA[Windows Vista]]></category>

		<guid isPermaLink="false">http://brandonlive.com/2008/04/09/windows-search-indexer-status-gadget/</guid>
		<description><![CDATA[I&#8217;m pleased to announce that the second tool to join the BrandonTools.com collection is now available!&#160; It&#8217;s a new Sidebar Gadget for those who want to see what the indexer is up to and to easily control its behavior.
 
Click here for details.
&#160;
Note that the screenshot depicts the gadget running on WS4.&#160; The &#34;index now&#34; [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m pleased to announce that the second tool to join the <a href="http://brandontools.com">BrandonTools.com</a> collection is now available!&#160; It&#8217;s a new Sidebar Gadget for those who want to see what the indexer is up to and to easily control its behavior.</p>
<p><img src="http://brandontools.com/images/gadget.jpg" /> </p>
<p><a href="http://brandontools.com/content/IndexerStatusGadget.aspx">Click here for details.</a></p>
<p>&#160;</p>
<p>Note that the screenshot depicts the gadget running on WS4.&#160; The &quot;index now&quot; button is not available on versions prior to Windows Search 4.</p>
]]></content:encoded>
			<wfw:commentRss>http://brandonlive.com/2008/04/09/windows-search-indexer-status-gadget/feed/</wfw:commentRss>
		</item>
		<item>
		<title>A glimpse of the future</title>
		<link>http://brandonlive.com/2008/04/07/a-glimpse-of-the-future/</link>
		<comments>http://brandonlive.com/2008/04/07/a-glimpse-of-the-future/#comments</comments>
		<pubDate>Mon, 07 Apr 2008 17:12:26 +0000</pubDate>
		<dc:creator>Brandon</dc:creator>
		
		<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://brandonlive.com/2008/04/07/a-glimpse-of-the-future/</guid>
		<description><![CDATA[Today I saw, for the first time, a software release where an update had to be released to address 32-bit compatibility issues, as the initial release was apparently only tested on 64-bit machines.
Neat.&#160; 
]]></description>
			<content:encoded><![CDATA[<p>Today I saw, for the first time, a software release where an update had to be released to <a href="http://www.neowin.net/forum/index.php?showtopic=627197&amp;st=0">address 32-bit compatibility issues</a>, as the initial release was apparently only tested on 64-bit machines.</p>
<p>Neat.&#160; </p>
]]></content:encoded>
			<wfw:commentRss>http://brandonlive.com/2008/04/07/a-glimpse-of-the-future/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Microsoft announces Windows 7&#8217;s final brand name</title>
		<link>http://brandonlive.com/2008/04/01/microsoft-announces-windows-7s-final-brand-name/</link>
		<comments>http://brandonlive.com/2008/04/01/microsoft-announces-windows-7s-final-brand-name/#comments</comments>
		<pubDate>Tue, 01 Apr 2008 07:01:20 +0000</pubDate>
		<dc:creator>Brandon</dc:creator>
		
		<category><![CDATA[April Fools]]></category>

		<guid isPermaLink="false">http://brandonlive.com/2008/04/01/microsoft-announces-windows-7s-final-brand-name/</guid>
		<description><![CDATA[Not really, but this was my attempt at an April Fool&#8217;s joke this year.  I don&#8217;t usually participate in these, but I guess there&#8217;s a first time for everything.
REDMOND, Wash. — April. 1, 2008
Today Microsoft Corp. announced the official name of its next-generation Windows® client operating system, formerly code-named “Windows 7.”
Steven Sinofsky, head of Windows [...]]]></description>
			<content:encoded><![CDATA[<p>Not really, but this was my attempt at an April Fool&#8217;s joke this year.  I don&#8217;t usually participate in these, but I guess there&#8217;s a first time for everything.</p>
<blockquote><p><strong>REDMOND, Wash. — April. 1, 2008</strong></p>
<p>Today Microsoft Corp. announced the official name of its next-generation Windows® client operating system, formerly code-named “Windows 7.”</p>
<p>Steven Sinofsky, head of Windows engineering, made the announcement at a special event in Los Angeles, California early this morning.  &#8220;We really think it&#8217;s important to go out there with a brand that users already know and love,&#8221; Sinofsky said at the announcement event.  &#8220;With all the talk of iPhones and iWorks and iLifes, I think it&#8217;s great that we&#8217;re bringing the focus back to Me.&#8221;</p>
<p>While some in the audience questioned the association of the new brand with an older Windows release, Sinofsky put their fears to rest.  &#8220;Windows Me was the most people-centric and consumer-friendly brand of Windows we&#8217;ve ever done.  While it may not have ever been our best selling operating system, I think it holds a special place in all our hearts.  We&#8217;re going to leverage that.&#8221;</p>
<p>With the recent completion of Windows Vista Service Pack 1, Sinofsky says that the Windows engineering team is ramping up development of the next-generation operating system, now called Windows Me Decade Edition.  &#8220;We think it&#8217;s important that people know we&#8217;re not designing this thing for the 21st century.  We&#8217;re designing it for the 202nd decade.&#8221;</p>
<p><strong>Windows Me Decade Edition Beta</strong></p>
<p>The timeline for releasing Beta 1, targeted at developers and IT professionals, will be announced in the coming months.</p>
<p><strong>Video</strong></p>
<p>Microsoft employee Waggener Edstrom tries out an early build of Windows Millennium Decade Edition, the next-generation operating system.  Los Angeles, California, April 1, 2008.</p>
<p><a href="http://www.youtube.com/watch?v=tGvHNNOLnCk">Watch the &#8220;Windows 7&#8243; announcement video.</a></p>
<p><strong>About Microsoft</strong></p>
<p>Founded in 1975, Microsoft (Nasdaq “MSFT”) is the worldwide leader in software, services and solutions that are hilariously named to help people and businesses realize their full potential.</p>
<p><em>Note to editors: </em>If you are interested in viewing additional information on Microsoft, please visit the Microsoft Web page at <a href="http://www.microsoft.com/presspass">http://www.microsoft.com/presspass</a> on Microsoft’s corporate information pages. Web links, telephone numbers and titles were correct at time of publication, but may since have changed. For additional assistance, journalists and analysts may contact Microsoft’s Rapid Response Team or other appropriate contacts listed at <a href="http://www.microsoft.com/presspass/contactpr.mspx">http://www.microsoft.com/presspass/contactpr.mspx</a>.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://brandonlive.com/2008/04/01/microsoft-announces-windows-7s-final-brand-name/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Joe Wilcox says Vista is failing (again)</title>
		<link>http://brandonlive.com/2008/03/31/joe-wilcox-says-vista-is-failing-again-is-wrong-again/</link>
		<comments>http://brandonlive.com/2008/03/31/joe-wilcox-says-vista-is-failing-again-is-wrong-again/#comments</comments>
		<pubDate>Tue, 01 Apr 2008 06:00:08 +0000</pubDate>
		<dc:creator>Brandon</dc:creator>
		
		<category><![CDATA[Microsoft]]></category>

		<category><![CDATA[News]]></category>

		<category><![CDATA[Windows Vista]]></category>

		<guid isPermaLink="false">http://brandonlive.com/2008/03/31/joe-wilcox-says-vista-is-failing-again-is-wrong-again/</guid>
		<description><![CDATA[In this morning&#8217;s article, Windows: A Monopoly Shakes, Joe Wilcox paints a grim picture for Windows.  Apparently, about 90% of surveyed enterprises adopted Windows XP in 2007, and about 6.3% adopted Vista, mainly taking away from Windows 2000 adoptions.  I don&#8217;t know about yours, but my boots are shaking.
Is anybody really surprised?  Enterprise IT isn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>In this morning&#8217;s article, <a href="http://www.microsoft-watch.com/content/operating_systems/windows_a_monopoly_shakes.html">Windows: A Monopoly Shakes</a>, Joe Wilcox paints a grim picture for Windows.  Apparently, about 90% of surveyed enterprises adopted Windows XP in 2007, and about 6.3% adopted Vista, mainly taking away from Windows 2000 adoptions.  I don&#8217;t know about yours, but my boots are shaking.</p>
<p>Is anybody really surprised?  Enterprise IT isn&#8217;t exactly a new thing, and this isn&#8217;t the first time Windows has shipped.  These guys refresh their PCs in cycles.  Lots of all-Windows 2000 shops who never started rolling over to XP are now beginning their early rounds of rolling out Vista boxes.  They&#8217;re in more of a hurry, since Windows 2000 is pretty ancient.  So much so that it originates from a time when we appended &#8220;2000&#8243; after product names and thought it sounded cool and futuristic.</p>
<p>The Windows XP guys sticking with it through 2007 doesn&#8217;t shock me.  Most of the XP-based enterprises I&#8217;m familiar with are in the pilot stages for moving to Vista.  Lots of them have been working closely with Microsoft to make sure that updates like SP1 and Windows Search 4.0 address their deployment issues.  This is just how it goes.</p>
<p>Some number will even decide to &#8220;skip&#8221; Vista.  I&#8217;m sure it&#8217;s not a prospect Microsoft likes to acknowledge, but just look at how many companies held onto Windows 2000.  Throughout the entire (long) lifetime of XP!</p>
<p>Joe says that Windows adoption on the whole declined 3.7 percent over the course of the year (98.6% in January to 94.9% in December).  I have no idea what that means.  Is there some comparison to the year before that might put those numbers in context?  Or are we saying that all months of the year are equal?  Did anyone consider that the impending release of Vista SP1 might have led some Windows-based companies to hold off purchasing for a few months?</p>
<p>I don&#8217;t mean to belittle the apparent gains made by the Apple and Linux camps in the last three months of 2007.  I just think it&#8217;s silly to make a big deal about three months of &#8220;decline&#8221; for Windows in light of those other factors.  Joe says that &#8220;Vista is in real trouble.&#8221;</p>
<p>And yet it looks like last year more companies bought Vista machines than Macs and Linux PCs combined.  I&#8217;d say that&#8217;s pretty darn good for an OS that was released at the beginning of the year.</p>
<p>Well, that&#8217;s my take anyway.</p>
]]></content:encoded>
			<wfw:commentRss>http://brandonlive.com/2008/03/31/joe-wilcox-says-vista-is-failing-again-is-wrong-again/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Remote Search in Windows Search 4.0</title>
		<link>http://brandonlive.com/2008/03/29/remote-search-in-windows-search-40/</link>
		<comments>http://brandonlive.com/2008/03/29/remote-search-in-windows-search-40/#comments</comments>
		<pubDate>Sat, 29 Mar 2008 23:56:56 +0000</pubDate>
		<dc:creator>Brandon</dc:creator>
		
		<category><![CDATA[Desktop Search]]></category>

		<category><![CDATA[Microsoft]]></category>

		<category><![CDATA[Search]]></category>

		<category><![CDATA[WS4]]></category>

		<category><![CDATA[Windows Shell]]></category>

		<category><![CDATA[Windows Vista]]></category>

		<guid isPermaLink="false">http://brandonlive.com/2008/03/29/remote-search-in-windows-search-40/</guid>
		<description><![CDATA[Following up on the Windows Search 4.0 Preview release, I will be writing several posts about some of the new features and changes enabled by this release.&#160; One such feature, and this first one I will dive into here, is the capability to remotely search the index of another Windows PC.
This features isn&#8217;t entirely new.&#160; [...]]]></description>
			<content:encoded><![CDATA[<p>Following up on the Windows Search 4.0 Preview release, I will be writing several posts about some of the new features and changes enabled by this release.&nbsp; One such feature, and this first one I will dive into here, is the capability to remotely search the index of another Windows PC.</p>
<p>This features isn&#8217;t entirely new.&nbsp; Windows Vista shipped nearly a year and a half ago with the ability to query the index of another Vista machine when searching file shares.&nbsp; The same capability extends to and from Windows Server 2008.</p>
<p>Windows Search 4.0 brings this capability to Windows XP machines, as well as Server 2003 - and perhaps more importantly, Windows Home Server.</p>
<p>So how does it work?&nbsp; First let&#8217;s take a look at how the user sees it.&nbsp; Let&#8217;s say I have a folder on Machine A called &#8220;Cool Stuff&#8221; that I want to share out.&nbsp; One simple way to do that is to browse to the folder in Explorer, select it, and click &#8220;Share.&#8221;</p>
<p><a href="http://brandonlive.com/wp-content/uploads/2008/03/sharecoolstuff.jpg"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="184" alt="sharecoolstuff" src="http://brandonlive.com/wp-content/uploads/2008/03/sharecoolstuff-thumb.jpg" width="244" border="0"/></a> </p>
<p>You&#8217;ll then get a friendly dialog that asks you who you&#8217;d like to share with.</p>
<p><a href="http://brandonlive.com/wp-content/uploads/2008/03/searchmachinea.jpg">&nbsp;<img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="110" alt="ShareCoolStuff2" src="http://brandonlive.com/wp-content/uploads/2008/03/sharecoolstuff2-thumb.jpg" width="327" border="0"/></a> </p>
<p>&#8220;Everyone&#8221; is a simple answer for information you want to be accessible to everyone.&nbsp; Select it from the drop-down and click &#8220;Add&#8221; to add Everyone to the list of people the folder is shared with.</p>
<p><a href="http://brandonlive.com/wp-content/uploads/2008/03/sharecoolstuff3.jpg"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="120" alt="ShareCoolStuff3" src="http://brandonlive.com/wp-content/uploads/2008/03/sharecoolstuff3-thumb.jpg" width="334" border="0"/></a> </p>
<p>What else do I have to do on Machine A?&nbsp; Nothing!&nbsp; Windows Search 4.0 will automatically index any folders you share out, on both XP and Vista.</p>
<p>On Machine B, you simply navigate to the share as you normally would.&nbsp; That could mean typing a UNC like \\MachineA\Cool Stuff\ or it could mean using a mapped drive, redirected User folders, the Network browser, etc.&nbsp; Once there, just type a query in the Search box (or on XP, click the &#8220;Search&#8221; button to bring up the Search Pane) and you&#8217;re off!</p>
<p>&nbsp; <a href="http://brandonlive.com/wp-content/uploads/2008/03/searchmachinea1.jpg"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="79" alt="SearchMachineA" src="http://brandonlive.com/wp-content/uploads/2008/03/searchmachinea-thumb1.jpg" width="340" border="0"/></a></p>
<p>Unfortunately I don&#8217;t have any XP machines to get a screenshot from, but I&#8217;ll try to add one soon. </p>
]]></content:encoded>
			<wfw:commentRss>http://brandonlive.com/2008/03/29/remote-search-in-windows-search-40/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Windows Search 4.0 Preview release</title>
		<link>http://brandonlive.com/2008/03/27/windows-search-40-preview-release/</link>
		<comments>http://brandonlive.com/2008/03/27/windows-search-40-preview-release/#comments</comments>
		<pubDate>Fri, 28 Mar 2008 01:21:27 +0000</pubDate>
		<dc:creator>Brandon</dc:creator>
		
		<category><![CDATA[Desktop Search]]></category>

		<category><![CDATA[Microsoft]]></category>

		<category><![CDATA[News]]></category>

		<category><![CDATA[Search]]></category>

		<category><![CDATA[WDS Development]]></category>

		<category><![CDATA[Windows Shell]]></category>

		<category><![CDATA[Windows Vista]]></category>

		<guid isPermaLink="false">http://brandonlive.com/2008/03/27/windows-search-40-preview-release/</guid>
		<description><![CDATA[Today we made available the WS 4.0 preview release for Windows XP, Vista, and Server 2003/2008.  You can read details about WS 4.0 at the following sites:
Vista Team Blog - Announcing the Windows Search 4.0 Preview
KB Article describing Windows Search 4.0 (with download links)
This release is mainly an update to the Windows Search indexer, and [...]]]></description>
			<content:encoded><![CDATA[<p>Today we made available the WS 4.0 preview release for Windows XP, Vista, and Server 2003/2008.  You can read details about WS 4.0 at the following sites:</p>
<p><a href="http://windowsvistablog.com/blogs/windowsvista/archive/2008/03/27/announcing-the-windows-search-4-0-preview.aspx">Vista Team Blog - Announcing the Windows Search 4.0 Preview</a></p>
<p><a href="http://support.microsoft.com/kb/940157">KB Article describing Windows Search 4.0 (with download links)</a></p>
<p>This release is mainly an update to the Windows Search indexer, and provides countless performance improvements, bug fixes, and reliability / recoverability features.</p>
<p>The XP/2003 version has been updated with more features previously exclusive to Vista - such as the ability to search remote indexes for network shares, and the ability to host Vista-style preview handlers in the preview pane.</p>
<p>WS4 also provides some cool new query capabilities for developers, which I will describe and give some examples of in future posts.</p>
<p>The most noticeable difference is probably how <strong>fast</strong> it is.  Those geniuses down the hallway in indexer land really pulled off some impressive feats with this release.</p>
<p>Since there are six different downloads depending on your OS, I&#8217;ll just refer you to the <a href="http://support.microsoft.com/kb/940157">KB article for downloading the preview release.</a></p>
<p>Let us know what you think!</p>
]]></content:encoded>
			<wfw:commentRss>http://brandonlive.com/2008/03/27/windows-search-40-preview-release/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Trend Micro thinks your PC is too secure (UPDATED)</title>
		<link>http://brandonlive.com/2008/03/23/dont-trust-trend-micro-with-your-pc-security/</link>
		<comments>http://brandonlive.com/2008/03/23/dont-trust-trend-micro-with-your-pc-security/#comments</comments>
		<pubDate>Sun, 23 Mar 2008 18:51:37 +0000</pubDate>
		<dc:creator>Brandon</dc:creator>
		
		<category><![CDATA[The worst ever]]></category>

		<category><![CDATA[Windows Vista]]></category>

		<guid isPermaLink="false">http://brandonlive.com/2008/03/23/dont-trust-trend-micro-with-your-pc-security/</guid>
		<description><![CDATA[Update 2: Trend Micro has sent a new response to the guy with the original problem, viewable here.  It seems that you can uninstall the build discussed below and install a new Vista-friendly one at this link.
Update: Apparently I misunderstood the timing of this e-mail, and it is actually from last year.  I&#8217;ve updated the post a [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Update 2: </strong>Trend Micro has sent a new response to the guy with the original problem, <a href="http://esupport.trendmicro.com/support/viewxml.do?ContentID=EN-1036026&amp;id=EN-1036026">viewable here</a>.<strong>  </strong>It seems that you can uninstall the build discussed below and install a new Vista-friendly one <a href="http://esupport.trendmicro.com/support/viewxml.do?ContentID=EN-1036026&amp;id=EN-1036026">at this link.</a></p>
<p><strong>Update: </strong>Apparently I misunderstood the timing of this e-mail, and it is actually from last year.  I&#8217;ve updated the post a bit to make that clearer and to be a little less harsh, since I don&#8217;t <em>know</em> that they&#8217;re still sending mails like this.  But the user is still having the same problem, and their web site still suggests the same solution, so it&#8217;s likely they are.  If you&#8217;ve received one like it, please let me know!</p>
<p>A Neowin forum member brought up what they believed was a conflict between UAC and Trend Micro Internet Security 2007.  After <a href="http://esupport.trendmicro.com/support/viewxml.do?ContentID=EN-1036026&amp;id=EN-1036026">some discussion about it, they received this e-mail</a> from Trend Micro&#8217;s support team:</p>
<blockquote><p>Dear Lexonex,<br />
Hello there! A pleasant day to you! My name is John from Consumer Escalation Team and I will be assisting you on this issue. To keep our records up-to-date, it is very important to RESPOND to this e-mail.</p>
<p>I have carefully read your email and have understood your concern.<br />
Regarding Turning-off User Account Cotrol of WIndows Vista. This feature of Windows Vista is the same as the Suspicious Software Alarm System of Trend Micro Internet Security 2007. Turning-it off really does not harm your computer since you have this kind of feature working in your Trend Micro program. It even allows you not to have that annoying pop-up each time you install or open other programs.</p>
<p>Right-now we don&#8217;t have any information yet if there will be a patch for that problem since it&#8217;s really about WIndows Vista&#8217;s permissions on the programs running in your computer. It&#8217;s like Trend Micro not being allowed by Windows Vista to work normally. And for the feature to run, it&#8217;s either we turn-off User Account Control or set some exceptions for other programs in User Account Control which right-now; WIndows&#8217; Vista does not give an option.</p>
<p>If ever a patch should be created for this problem, it should be a patch from Microsoft so they can allow valid programs to run normally when User Account Control is on.</p>
<p>But we are not closing our options and are still testing if there is a way that the whole Trend Micro program as a whole can be permitted by WIndows Vista to run normally.<br />
I hope I have answered your inquiries clearly.<br />
I will patiently wait for your reply.<br />
Please let me know if I can close this case already.<br />
VERY IMPORTANT: In order for me to have a history of our correspondence, please do not delete the subject and the contents of this email.<br />
Hope this proves useful and have a nice day<br />
Best Regards,<br />
Consumer Support Team<br />
TrendLabs HQ, Trend Micro Incorporated</p>
<p><strong>Apr 12 2007, 04:12 AM </strong></p></blockquote>
<p>Did he really just say that?!?  Let&#8217;s count the problems with this message:</p>
<ol>
<li>Turning off UAC has a <strong>substantial</strong> impact on your PC security.</li>
<li>Trend Micro&#8217;s &#8220;Suspicious Software Alarm&#8221; is nothing like UAC.  It doesn&#8217;t even have the same goal!  That feature, as its name implies, is about preventing malware from getting on your machine.  <a href="http://esupport.trendmicro.com/support/viewxml.do?ContentID=EN-1036026&amp;id=EN-1036026">UAC has nothing to do with malware.</a></li>
<li>It&#8217;s impossible for a third-party application or service to do what UAC does.</li>
<li>He blames their crappy software design on Vista!  If their developers think this way, you should run as fast you possibly can <strong>away from Trend Micro</strong>.</li>
<li>Every other virus scanner developer has gotten along just fine with UAC.  You know, because they actually know how to write software. </li>
<li>&#8220;Either we turn off UAC or set some exception&#8221; - you don&#8217;t set any exceptions!!! You show an elevation dialog.  Or you run as a service like everybody else.  If your virus scanner is running in user mode, you&#8217;ve already failed.</li>
</ol>
<p><strong>Update: </strong>Now it&#8217;s been nearly a year since that e-mail was sent.  Have they fixed the problem?  It doesn&#8217;t look like it.  They still tell you the same thing <a href="http://esupport.trendmicro.com/support/viewxml.do?ContentID=EN-1036026&amp;id=EN-1036026">on their knowledge base site!</a></p>
<p>My advice?  Get OneCare, AVG, eTrust, or another offering.  Just make sure it&#8217;s from someone who understands security and software development.</p>
]]></content:encoded>
			<wfw:commentRss>http://brandonlive.com/2008/03/23/dont-trust-trend-micro-with-your-pc-security/feed/</wfw:commentRss>
		</item>
		<item>
		<title>More on the Apple Update scandal</title>
		<link>http://brandonlive.com/2008/03/22/more-on-the-apple-update-scandal/</link>
		<comments>http://brandonlive.com/2008/03/22/more-on-the-apple-update-scandal/#comments</comments>
		<pubDate>Sun, 23 Mar 2008 03:55:07 +0000</pubDate>
		<dc:creator>Brandon</dc:creator>
		
		<category><![CDATA[Apple]]></category>

		<category><![CDATA[Macintosh]]></category>

		<category><![CDATA[News]]></category>

		<category><![CDATA[The worst ever]]></category>

		<guid isPermaLink="false">http://brandonlive.com/2008/03/22/more-on-the-apple-update-scandal/</guid>
		<description><![CDATA[Two points I want to make based on the comments my last post is receiving:
1)  That post, and its title, are mainly about the outrageous ways in which people are jumping to Apple&#8217;s defense&#8230; not Apple&#8217;s action itself.
2)  If your argument is that user&#8217;s read the dialog and can uncheck the Safari box if they [...]]]></description>
			<content:encoded><![CDATA[<p>Two points I want to make based on the comments <a href="http://brandonlive.com/2008/03/22/apple-is-the-new-borg/">my last post</a> is receiving:</p>
<p>1)  That post, and its title, are mainly about the outrageous ways in which people are jumping to Apple&#8217;s defense&#8230; not Apple&#8217;s action itself.</p>
<p>2)  If your argument is that user&#8217;s read the dialog and can uncheck the Safari box if they don&#8217;t want it, you are delusional.</p>
<p>Consider the recent report that <a href="http://www.marketingpilgrim.com/2008/03/24-cant-find-google.html">24% of internet users can&#8217;t find Google</a>.  Now think about this from that user&#8217;s perspective.  They see a dialog that says, very clearly, <strong>&#8220;Select the items you want to update.&#8221;</strong>  Do you really think those users are going to know what Safari is?  Do you think they&#8217;re going to know that they don&#8217;t already have it installed?</p>
<p>I bet you <strong>way</strong> more than 24% don&#8217;t even know what &#8220;Quicktime&#8221; is.  I can promise you my sister, her roommates, and my mom all don&#8217;t.  They sure as heck don&#8217;t know what Safari is.  If they see it in that list, they are going to assume it is something they already have.  Probably something that came with their computer. </p>
<p>If they&#8217;re &#8220;good&#8221; users, they will know that keeping their software up-to-date is important, so they&#8217;ll choose to update everything they possibly can because they don&#8217;t want their computers to be hacked, and we keep telling them that the best way to do that is to keep their systems up-to-date.  Apple is manipulating that to their advantage.  That&#8217;s exactly what <a href="http://blogs.zdnet.com/open-source/?p=2157">John Lilly, CEO of Mozilla, said yesterday.</a>  He is right.</p>
<p>You can argue that it&#8217;s their software, and they can do with it as they please.  I will agree with you, actually.  However, just because I believe they <strong>can</strong> do this, and support their right to, doesn&#8217;t mean I have to like it.  I think it&#8217;s a shitty practice, and if we don&#8217;t make a big deal about it right now, it&#8217;s only going to get worse.</p>
]]></content:encoded>
			<wfw:commentRss>http://brandonlive.com/2008/03/22/more-on-the-apple-update-scandal/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Apple is the new Borg.</title>
		<link>http://brandonlive.com/2008/03/22/apple-is-the-new-borg/</link>
		<comments>http://brandonlive.com/2008/03/22/apple-is-the-new-borg/#comments</comments>
		<pubDate>Sat, 22 Mar 2008 20:34:01 +0000</pubDate>
		<dc:creator>Brandon</dc:creator>
		
		<category><![CDATA[Apple]]></category>

		<category><![CDATA[Macintosh]]></category>

		<category><![CDATA[News]]></category>

		<category><![CDATA[The worst ever]]></category>

		<guid isPermaLink="false">http://brandonlive.com/2008/03/22/apple-is-the-new-borg/</guid>
		<description><![CDATA[If you haven&#8217;t heard, Apple has decided to start forcing Safari down your throat if you use iTunes, Quicktime, or any of their other Windows software.
In response, lots of Apple fans have jumped to their defense.  They say that users read the dialog before clicking &#8220;update.&#8221;  They say users will welcome their new Apple overlords.  [...]]]></description>
			<content:encoded><![CDATA[<p>If you haven&#8217;t heard, Apple has decided to start <a href="http://www.microsoft-watch.com/content/operating_systems/apples_windows_invasion.html">forcing Safari down your throat</a> if you use iTunes, Quicktime, or any of their other Windows software.</p>
<p>In response, lots of Apple fans have <a href="http://www.tuaw.com/2008/03/22/sneaky-safari-updater-opinion-roundup/">jumped to their defense.</a>  They say that users read the dialog before clicking &#8220;update.&#8221;  They say users will welcome their new Apple overlords.  They say it&#8217;s okay because &#8221;Microsoft is worse&#8221; - <a href="http://www.theangrydrunk.com/2008/03/21/todays-whiny-macmeme-is/">they make me reboot after installing updates!</a></p>
<p>Some nutjobs are even saying that Apple <a href="http://blech.vox.com/library/post/windows-invasion-translation.html#comments">distributing new software through the updater is the &#8220;cost&#8221; of using their product</a> - akin to ads in Messenger or fees for anti-virus software.  I don&#8217;t remember signing up for that cost when I bought my iPhone.  That same wacko makes a bunch of other outrageous claims about how it is a glorious achievement that Apple is assimilating your Windows machine without asking first.  You should read it, if only for the comedic value.</p>
<p>I think the disconnect here is simple. It&#8217;s just like the disagreement that arose over Apple&#8217;s font rendering when they first released Safari to Windows. And that is:</p>
<p>People like the way things work on their Windows PCs. They don&#8217;t want one app to have different, blurrier font rendering. They don&#8217;t want Apple installing apps on their machines without consent.</p>
<p>Apple and their fans don&#8217;t understand this, because they believe they are partaking in some sort of &#8220;holy crusade&#8221; and &#8220;bringing the light of Apple to the underprivileged in Windows land.&#8221; It&#8217;s an absurd mindset, but that hasn&#8217;t stopped them having it. They just can&#8217;t understand why Windows user&#8217;s wouldn&#8217;t welcome Apple&#8217;s software and UI.</p>
<p><strong>They&#8217;re like the borg,</strong> &#8220;Why wouldn&#8217;t you <em>want</em> to be assimilated - we bring perfection!&#8221;</p>
<hr /><strong>Come on, are they really *forcing* it on you?</strong></p>
<p>Maybe not, but close enough.  Anything that leads to users unintentionally taking an action is a flawed UI.  That could mean this is a design flaw - but Apple doesn&#8217;t make those =)  Besides, the intent is obvious - to get more people to install Safari whether they want it or not.  Rationalize it all you want, but you can&#8217;t deny the game they&#8217;re playing.<strong>Is it working?</strong>I&#8217;m a software developer, and probably one of the most generally computer savvy people I know. I got very used to clicking &#8220;Update&#8221; button on the Apple Software Update dialog so that it would keep iTunes and Quicktime up-to-date (along with the BootCamp software on my Macbook).I came very close to installing Safari by accident because of this, and would not <strong>at all</strong> be surprised to see lots of others clicking it without looking.</p>
<p>The right thing for Apple to do here would have been:</p>
<p>1) Don&#8217;t check it by default. You&#8217;ve gotten people trained to click &#8220;Update&#8221; since you don&#8217;t have an automatic update system, and now you&#8217;re abusing that.<br />
2) The text in the dialog is inaccurate. It says &#8220;Select the items you want to update&#8221; - but Safari isn&#8217;t software on my computer, so how can I update it?</p>
<p>I had Safari installed on one of my machines to try it out when they released it. So it was normal for the updater to want to update it there.  Then when it popped up in the list on a <em>different</em> machine I was confused, and thought I had mixed up which machine I&#8217;d installed it on months ago. But I had not. They were trying to trick me.</p>
<p>Oh sorry, they were trying to &#8220;show me the light.&#8221;</p>
<p><strong>Update:</strong></p>
<p>I just posted <a href="http://brandonlive.com/2008/03/22/more-on-the-apple-update-scandal/">a follow-up to this entry.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://brandonlive.com/2008/03/22/apple-is-the-new-borg/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Indexed folders rely on the index being complete</title>
		<link>http://brandonlive.com/2008/03/16/faq-how-do-i-disable-indexing-for-most-file-extensions/</link>
		<comments>http://brandonlive.com/2008/03/16/faq-how-do-i-disable-indexing-for-most-file-extensions/#comments</comments>
		<pubDate>Sun, 16 Mar 2008 22:54:25 +0000</pubDate>
		<dc:creator>Brandon</dc:creator>
		
		<category><![CDATA[Desktop Search]]></category>

		<category><![CDATA[Microsoft]]></category>

		<category><![CDATA[Search]]></category>

		<category><![CDATA[WDS FAQ]]></category>

		<category><![CDATA[Windows Shell]]></category>

		<category><![CDATA[Windows Vista]]></category>

		<guid isPermaLink="false">http://brandonlive.com/2008/03/16/faq-how-do-i-disable-indexing-for-most-file-extensions/</guid>
		<description><![CDATA[Let&#8217;s say you want to optimize your system by only indexing certain data.  For example, a reader recently e-mailed me and said &#8220;I only want to index my media files.&#8221;  Seems like a valid choice.  At first glance, it might seem like you could achieve this by telling Windows to only index files with extensions [...]]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s say you want to optimize your system by only indexing certain data.  For example, a reader recently e-mailed me and said &#8220;I only want to index my media files.&#8221;  Seems like a valid choice.  At first glance, it might seem like you could achieve this by telling Windows to only index files with extensions like .mp3 and .avi.  Ultimately, this is a <strong>very bad idea.</strong></p>
<p>First, let me tell you why this is a bad idea.  Second, I&#8217;ll tell you the right way to achieve what you want.</p>
<p>Let&#8217;s begin by looking at how the Windows Vista shell and the indexer work together.</p>
<p>The indexer maintains a list of &#8220;start paths&#8221; - which are locations in the shell namespace that it cares about.  By default, it is set up to index the x:\Users directory - and thus all of the default Documents / Music / Pictures folders of all user accounts on the system.  When you install Outlook, it sets up a start path for your mail accounts.  OneNote sets one up for your OneNote data.  And so on.  This means that the indexer will try to index all items under that path*, and ignore everything else.</p>
<p>When you browse to a folder in Explorer, the shell asks the indexer if the current path is covered by the index.  If it is, Explorer will use the index exclusively for search / filter / grouping operations against that location.  It does <strong>not</strong> ask the index if it covers all the file types in that location.  <strong>It assumes the index is the authoritative source for information about that part of the namespace.</strong></p>
<p>On the other hand, if the path is not covered by the index, Explorer walks the entire namespace starting at that location (so, the current folder and all subfolders) and enumerates every single item, performing all operations like filtering / sorting / grouping in-memory.  By default, it does not crack open any files being enumerated - so all filtering operations happen only against the basic properties like file name.  You can then click the &#8220;Search in File Contents&#8221; button (what some of us call the &#8220;try harder&#8221; button), and it will repeat the operation - stopping at every file and cracking it open with the appropriate IFilter and property handlers, doing essentially the same thing that happens when a file is indexed.  It loads the file, cracks it open, extracts all the properties and content, checks to see if it matches the current filter, and then decides whether or not to add that item to the view or ignore it.  If you change the filter, the whole process starts over again.  Needless to say, this is rather slow if you have to do it for more than a few files.  That&#8217;s why the &#8220;Search in File Contents&#8221; button is there, since in most unindexed locations (like C:\windows) you are probably only searching for a filename.</p>
<p>Armed with this information, let&#8217;s take another look at the original question.  Let&#8217;s say you go into the Advanced options for the indexer and tell it not to index .doc files at all.  Then you go save a new document called Something.doc inside of your Documents folder, which is still indexed.  The indexer will be notified that a new file was created there, but since you disabled indexing of that extension, it will ignore it.  Then when you go to your user folder or the Documents folder and search for &#8220;something&#8221; - you don&#8217;t find the document.  Even though it&#8217;s right there in the name.  The folder said &#8220;Hey, I&#8217;m indexed&#8221; and the file is not in the index, so as far as Explorer is concerned, it doesn&#8217;t exist.</p>
<p>A much better approach, if you really don&#8217;t care about indexing your .doc files, is to tell Windows not to index the Documents folder (or wherever you keep your .doc files).  That way it will fall back to slow GREP search when you look there, which will at least find what you&#8217;re looking for, albeit more slowly.</p>
<p>You can do this from the Indexing Options control panel, and it&#8217;s pretty easy to do.  Only want your music and videos indexed?  Then tell the indexer to only crawl the places where you store those files.  That it&#8217;s, mission accomplished.</p>
<p>The end result is the same.  The indexer isn&#8217;t doing any additional work, unless you mix .doc files and media files in the same folder.  And even then, at least you&#8217;ll be able to find them.</p>
<p>Another option available to you is to set certain extensions to &#8220;Index File Properties only.&#8221;  That way you&#8217;ll at least be able to find the item by its name.  Why would you want to do that?  I have no idea.  It&#8217;s not like indexing files incurs a significant overhead on any reasonably modern PC.  The option is mainly there because there are some file types the indexer <em>can&#8217;t</em> search inside.  So instead it indexes all the basic stuff that applies to every file (like name, date modified, and size).</p>
<p><font size="1">* = It&#8217;s actually more complicated than that, as there can be nested inclusion/exclusion rules, files or folders excluded based on attributes, etc.  But that&#8217;s not particularly relevant to this discussion</font></p>
]]></content:encoded>
			<wfw:commentRss>http://brandonlive.com/2008/03/16/faq-how-do-i-disable-indexing-for-most-file-extensions/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Don&#8217;t write gadgets with Flash or Silverlight</title>
		<link>http://brandonlive.com/2008/03/11/dont-write-gadgets-with-flash-or-silverlight/</link>
		<comments>http://brandonlive.com/2008/03/11/dont-write-gadgets-with-flash-or-silverlight/#comments</comments>
		<pubDate>Tue, 11 Mar 2008 17:51:09 +0000</pubDate>
		<dc:creator>Brandon</dc:creator>
		
		<category><![CDATA[Microsoft]]></category>

		<category><![CDATA[Windows Vista]]></category>

		<guid isPermaLink="false">http://brandonlive.com/2008/03/11/dont-write-gadgets-with-flash-or-silverlight/</guid>
		<description><![CDATA[Because I, and millions of others, will not be able to use them.  That&#8217;s because we use 64-bit versions of Windows.
You see, the Windows Sidebar uses Internet Explorer to host the HTML and script that make up a gadget.  On 64-bit versions of Windows, the Sidebar is a 64-bit process, and so it uses the [...]]]></description>
			<content:encoded><![CDATA[<p>Because I, and millions of others, will not be able to use them.  That&#8217;s because we use 64-bit versions of Windows.</p>
<p>You see, the Windows Sidebar uses Internet Explorer to host the HTML and script that make up a gadget.  On 64-bit versions of Windows, the Sidebar is a 64-bit process, and so it uses the 64-bit version of IE.</p>
<p>There is no Flash or Silverlight for the 64-bit version of IE.</p>
<p>About a week ago I encountered a gadget offering from MSNBC having to do with the presidential primary results.  I added it, only to find that the gadget&#8217;s UI was totally missing.  It didn&#8217;t take long to figure out they were hosting Flash.</p>
<p>I&#8217;m actually quite disappointed at the lack of 64-bit Silverlight support, as I believe it would be a compelling solution for gadget authors.  .NET already works great in gadget situations because it gets compiled at runtime for the appropriate platform - and thus works on both 32-bit and 64-bit versions of Vista.  I had hoped that since Silverlight is based on .NET that it would include similar write-once deploy-anywhere support, including 64-bit platforms.</p>
<p>I hope that is something they fix in the near future.</p>
<p><strong>Update: </strong>Yes, you can install both Flash and Silverlight (1.0 and 2.0) on Vista x64 systems.  I assume that everybody knows that, but perhaps they do not.  The caveat, and point of this post, is that you are installing the <strong>32-bit</strong> version of Flash / Silverlight, and thus it only works in 32-bit applications.  The default browser on 64-bit Windows is the 32-bit version of IE, so these plug-ins work fine for web browsing.  But they don&#8217;t work in the sidebar, or any 64-bit applications that host IE.</p>
]]></content:encoded>
			<wfw:commentRss>http://brandonlive.com/2008/03/11/dont-write-gadgets-with-flash-or-silverlight/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
