<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.technet.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx</link><description>I was in Barcelona a couple of weeks ago speaking at Microsoft’s TechEd/ITForum conference, where I delivered several sessions (two, Advanced Malware Cleaning and Windows Vista Kernel Changes earned the top #1 and #2 rated breakout sessions for the week</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#532534</link><pubDate>Mon, 27 Nov 2006 22:14:36 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:532534</guid><dc:creator>Sean McLeod</dc:creator><description>&lt;p&gt;Does this delay also occur if your network adapter's media connection is 'disconnected' or only if you're connected to some physical network but without a network path to your domain controller?&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#532549</link><pubDate>Mon, 27 Nov 2006 22:45:31 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:532549</guid><dc:creator>CypherBit</dc:creator><description>&lt;p&gt;Great detective work as always.&lt;/p&gt;
&lt;p&gt;It is however a shame no one bothered to disconnect from their domain and test this before RTM. Millions of users will be quite unhappy having to wait for something to open (for longer then usual) on their brand new notebooks.&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#532563</link><pubDate>Mon, 27 Nov 2006 23:01:23 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:532563</guid><dc:creator>Ed Plunkett</dc:creator><description>&lt;p&gt;See also:&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://www.joelonsoftware.com/items/2006/11/24.html"&gt;http://www.joelonsoftware.com/items/2006/11/24.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://minimsft.blogspot.com/2005/11/hey-shareholders-vs-2005-is-fantastic.html"&gt;http://minimsft.blogspot.com/2005/11/hey-shareholders-vs-2005-is-fantastic.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;...not to mention the DevStudio 2005 help viewer which invalidates the entire sidebar every time you click on anything in it. And the CLR. &lt;/p&gt;
&lt;p&gt;They've gotten badly off track. &lt;/p&gt;
&lt;p&gt;Things will be dismal for a while until competent competitors appear (let us pray that they do...). &lt;/p&gt;</description></item><item><title>Systemic problem</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#532589</link><pubDate>Mon, 27 Nov 2006 23:56:11 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:532589</guid><dc:creator>Foolhardy</dc:creator><description>&lt;p&gt;IMO, this is part of a systemic design error in the shell that has existed since at least Windows 95: the shell is far too synchronous.&lt;/p&gt;
&lt;p&gt;The shell should never be making a blocking network request in the GUI thread. This is only the latest example of the shell being unresponsive because it is blocking on some event that, predictably, can and will take a long time to complete or timeout.&lt;/p&gt;
&lt;p&gt;The problem is so big that the kernel team has had to implement a special syscall to cancel a synchronous IO operation in another thread. This is at best a work-around: the correct solution would've been to have the GUI thread not actually block on these events, either directly via asynchronous IO, or with an army of worker threads to do the blocking (with async notification back to the GUI thread).&lt;/p&gt;
&lt;p&gt;The last thing that should be happening is for the GUI thread itself to block on a superficial username lookup, network computer enumeration, domain controller lookup, CD-ROM volume names, or any other kind of lengthy IO. This is, unfortunately, the current design of the shell.&lt;/p&gt;
&lt;p&gt;CUsersFilesFolder::GetDisplayNameOf shouldn't be calling GetUseNameExW in the GUI thread (unless it somehow knows the answer has been cached and won't block.) Instead, it should display the most correct answer it can retrieve immediately, and have a worker thread block on GetUserNameExW. When GetUserNameExW returns, it can inform the GUI thread that a better display name has become available and the GUI thread can update accordingly. I could see the GUI thread waiting for a response for a short time &amp;nbsp;from the worker (say 200ms) to help avoid flicker. This strategy should be applied to all shell display elements that might block for nontrivial amounts of time.&lt;/p&gt;
&lt;p&gt;I never use the network neighborhood because it WILL block for 10+ seconds, leaving the entire window unresponsive.&lt;/p&gt;
&lt;p&gt;I know that Win95 didn't support async IO and couldn't afford to create tons of threads, but they still could've used two (one for GUI, one for background) Besides, I thought Vista was supposed to fix this kind of thing.&lt;/p&gt;</description></item><item><title>
			Tim Anderson&amp;#8217;s ITWriting - Tech writing blog			 &amp;raquo; Mysterious Windows Vista hang explained		</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#533261</link><pubDate>Tue, 28 Nov 2006 14:44:19 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:533261</guid><dc:creator>
			Tim Anderson’s ITWriting - Tech writing blog			 » Mysterious Windows Vista hang explained		</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://www.itwriting.com/blog/?p=62"&gt;http://www.itwriting.com/blog/?p=62&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#533263</link><pubDate>Tue, 28 Nov 2006 14:44:47 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:533263</guid><dc:creator>denis bider</dc:creator><description>&lt;p&gt;Foolhardy: The problem is not just the Windows shell, it is the design of the Win32 API. Loads upon loads of functions that can and will block for long periods of time are available in synchronous versions only, for &amp;quot;ease of use&amp;quot;. They're &amp;quot;easy to use&amp;quot; alright, but the result is a crappy experience for the user.&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#533264</link><pubDate>Tue, 28 Nov 2006 14:45:52 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:533264</guid><dc:creator>Tim Anderson</dc:creator><description>&lt;p&gt;&amp;gt; Does this delay also occur if your network&lt;/p&gt;
&lt;p&gt;&amp;gt; adapter's media connection is 'disconnected'&lt;/p&gt;
&lt;p&gt;Doesn't seem to, I just tried it. No delay.&lt;/p&gt;
&lt;p&gt;Tim&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#533295</link><pubDate>Tue, 28 Nov 2006 16:56:27 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:533295</guid><dc:creator>Dave</dc:creator><description>&lt;p&gt;CypherBit: &amp;quot;It is however a shame no one bothered to disconnect from their domain and test this before RTM.&amp;quot;&lt;/p&gt;
&lt;p&gt;Well, bugs happen, and the fact that it caches the information for half an hour makes it even harder to repro. &lt;/p&gt;
&lt;p&gt;Even if a fix is written today, it will be sitting in on a disk drive somewhere for the next 6 to 12 months until Vista SP1. With guys like Mark on staff, Microsoft can write bugfixes, but their process prevents them from shipping bugfixes in a reasonable time frame. You see, it has to be tested with the Urdu distribution, and we have to ensure no bad interactions with the Zune player, and ...&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#533348</link><pubDate>Tue, 28 Nov 2006 18:03:09 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:533348</guid><dc:creator>CypherBit</dc:creator><description>&lt;p&gt;Dave: Of course bugs happen, but this one does seem a bit obvious. Not the fact what's wrong, but that something is wrong. I'd imagine a lot of testers were disconnected from their DC for quite some time, they might have even traveled and it just surprises me no one noticed this. That's all. &lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#533460</link><pubDate>Tue, 28 Nov 2006 21:11:39 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:533460</guid><dc:creator>Neil Prestemon</dc:creator><description>&lt;p&gt;Would it be possible to simply hit a registry value to increase that cache time from 30 minutes to something longer?&lt;/p&gt;
&lt;p&gt;Or maybe there's a way to hit a registry value to change this behavior so that populating the breadcrumb bar will skip over the GetUserDisplayName, and substitute the regular UserName (culled from the file-system path) - for example, if Vista is in Workgroup Mode, it's not going to even try to look up the UserDisplayName in Active Directory. &amp;nbsp;So maybe there's a regkey somewhere that will &amp;quot;fool&amp;quot; Vista into thinking it's in Workgroup mode - for times when the box is not connected to the network.&lt;/p&gt;
&lt;p&gt;Quite often, Windows developers will embed keys like this, as little undocumented hacks to help them test certain scenarios, and for one reason or another (usually at the behest of a Marketing dweeb) that key remains undocumented or unexposed.&lt;/p&gt;
&lt;p&gt;Mark has done a fine job of exposing the behavior of the system, but one does not always have to live with that as the default. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;(Of course there are trade-offs - I think both of these possible workarounds would likely be security risks.)&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#533473</link><pubDate>Tue, 28 Nov 2006 21:29:41 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:533473</guid><dc:creator>Anon</dc:creator><description>&lt;p&gt;Foolhardy: AMEN. This has frustrated me for years.&lt;/p&gt;
&lt;p&gt;It feels like MS are forever extending the same tired 10-plus-year-old design.&lt;/p&gt;
&lt;p&gt;I'm sure much of the code has improved beyond recognition, but still it retains this awful clunkiness.&lt;/p&gt;
&lt;p&gt;A serious revamp is overdue.&lt;/p&gt;</description></item><item><title>adapter's media connection ...</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#533541</link><pubDate>Tue, 28 Nov 2006 23:39:56 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:533541</guid><dc:creator>ddebug</dc:creator><description>&lt;p&gt;Sean McLeod hit the nail on it's head.&lt;/p&gt;
&lt;p&gt;A domain related API should have fail quickly when there is no visible domain connection. &amp;nbsp;So Mark's investigation actually gives a strong alibi to the shell, and the culprit is some underlying layer of smartness in the base network that should detect connection to the domain. It can be that layer or feature even does not exist yet, or haven't made it to RTM.&lt;/p&gt;
&lt;p&gt;Instead, there is a primitive try-and-cache logic.&lt;/p&gt;
&lt;p&gt;The computer obviously was connected in some way (to the public internet or whatever) - so the media connection state by itself isn't very useful.&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#534447</link><pubDate>Wed, 29 Nov 2006 21:52:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:534447</guid><dc:creator>Brian Keller</dc:creator><description>&lt;p&gt;Very interesting post, but on my machine (Vista RTM) I am seeing a delay but it's &amp;lt; 3 seconds on first invocation and no delay on subsequent invocations. What is your Windows Experience Index? Mine is 3.0 for my laptop. Are running in a VPC by any chance?&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#535062</link><pubDate>Thu, 30 Nov 2006 05:08:31 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:535062</guid><dc:creator>Hayden</dc:creator><description>&lt;p&gt;Augh! Synchronous shell again! I never cease to be irritated how this allegedly multi-tasking OS is frozen by, say inserting a CDROM. It's rubbish. And monumentally lazy on the part of the planners. Wasn't Vista supposed to be a drains-up rework of XP?&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#535231</link><pubDate>Thu, 30 Nov 2006 06:40:40 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:535231</guid><dc:creator>rivet</dc:creator><description>&lt;p&gt;Its re-assuring to see you posting this kind of work while employed by Microsoft. I imagine I'm not the only one that wondered if you would no longer be able to post things that are embarrassing to your employer.&lt;/p&gt;
&lt;p&gt;Its interesting to see that taking a domain member workstation away from the domain still has problems and delays. I suppose this is a demonstration of the evolution of the operating system. Had it been designed for such it would no doubt have a storage cache for all of the information it might need while offline so that these calls don't waste time.&lt;/p&gt;
&lt;p&gt;As mentioned above its kind of surprising that there isn't a fast bypass to these checks when there is no attached network. That would make sense, but I supose that would simply be another hack to get around previously unplanned usage.&lt;/p&gt;
&lt;p&gt;Thanks again Mark. Always a good read.&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#535627</link><pubDate>Thu, 30 Nov 2006 18:12:17 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:535627</guid><dc:creator>Nicholas</dc:creator><description>&lt;p&gt;Mark,&lt;/p&gt;
&lt;p&gt;Great article as always. This is really annoying, and something I'd hoped had been fixed in Vista. Ugh.&lt;/p&gt;
&lt;p&gt;Anyway, you might want to do some debugging on &amp;nbsp;iTunes in Vista.. it's terrible! Not sure what's going on there, but looking at the output from Process Monitor, iTunes makes calls and registry hits all over the place that have nothing to do with anything. And when it goes to read/write data, it gets a &amp;quot;FAST IO DISALLOWED&amp;quot; -- which I would assume accounts for a lot of the slowness.&lt;/p&gt;
&lt;p&gt;I'm off to write a blog post in my own blog about how much iTunes sucks in general...&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#536086</link><pubDate>Fri, 01 Dec 2006 03:37:32 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:536086</guid><dc:creator>James</dc:creator><description>&lt;p&gt;Large blocked UI periods caused by network timeouts have been systemic throughout Windows' lifetime. For that reason I'm surprised more wasn't done to test for this sort of thing.&lt;/p&gt;
&lt;p&gt;One would have hoped that Microsoft had done a lot to fix these. Maybe they have but created a new &amp;quot;worse&amp;quot; one that will lead to a delay every 30 minutes when opening a file if you are connected to a different network with no route to your DC.&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#536262</link><pubDate>Fri, 01 Dec 2006 04:43:30 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:536262</guid><dc:creator>Gareth</dc:creator><description>&lt;p&gt;Great read. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;However, why is the UserName only being cached for 30 minutes? &amp;nbsp;How often does this information actually change in the real world? &amp;nbsp;&lt;/p&gt;
&lt;p&gt;Changes are hardly a regular event - most will probably never change. &amp;nbsp;Would it really matter if it were wrong whilst someone was disconnected? &amp;nbsp; It primarily gets used for these display purposes anyway.....&lt;/p&gt;</description></item><item><title>shahine.com/omar/ - Um, great... I love bugs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#536549</link><pubDate>Fri, 01 Dec 2006 10:22:30 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:536549</guid><dc:creator>shahine.com/omar/ - Um, great... I love bugs</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://www.shahine.com/omar/UmGreatILoveBugs.aspx"&gt;http://www.shahine.com/omar/UmGreatILoveBugs.aspx&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>Michael Tsai - Blog  -  Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#537109</link><pubDate>Fri, 01 Dec 2006 19:16:24 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:537109</guid><dc:creator>Michael Tsai - Blog  -  Delayed Windows Vista File Open Dialogs</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://mjtsai.com/blog/2006/12/01/delayed-windows-vista-file-open-dialogs/"&gt;http://mjtsai.com/blog/2006/12/01/delayed-windows-vista-file-open-dialogs/&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>Un lugar en el mundo&amp;#8230;  &amp;raquo; Blog Archive   &amp;raquo; Retazos de la semana (y III)</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#538564</link><pubDate>Sat, 02 Dec 2006 16:34:25 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:538564</guid><dc:creator>Un lugar en el mundo…  » Blog Archive   » Retazos de la semana (y III)</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://blog.unlugarenelmundo.es/2006/12/02/retazos-de-la-semana-y-iii/"&gt;http://blog.unlugarenelmundo.es/2006/12/02/retazos-de-la-semana-y-iii/&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#539917</link><pubDate>Sun, 03 Dec 2006 22:54:54 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:539917</guid><dc:creator>Tweety</dc:creator><description>&lt;p&gt;Omg... I know you work for MS, but how not to tell MS sux? It's incredible how such small little things make Windows be so hated. Such little pauses and bugs.&lt;/p&gt;
&lt;p&gt;I think fixing this should not be a problem, just disable this name displaying function if I'm not connected to my network. One IF statement. So hard? I don't think so, but MS do.&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#545273</link><pubDate>Thu, 07 Dec 2006 01:54:50 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:545273</guid><dc:creator>Steve</dc:creator><description>&lt;p&gt;This is a very annoying bug. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;On a side note, maybe related or not, I'm experiencing a delay when launching IE from the quick start bar. &amp;nbsp;(Going into the start menu and launching works OK.) &amp;nbsp;Only happens when I'm of the domain. &amp;nbsp;Very annoying!!&lt;/p&gt;</description></item><item><title>Same sort delays in DevStudio with WinXP</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#548736</link><pubDate>Fri, 08 Dec 2006 21:08:55 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:548736</guid><dc:creator>Will White</dc:creator><description>&lt;p&gt;I have the same kind of delay with the File Open dialog box in Developer Studio (VB 2005). &amp;nbsp;Not just when I open the dialog, but everytime I change paths. &amp;nbsp;It only happens once in a while, but it's really annoying.&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#550970</link><pubDate>Mon, 11 Dec 2006 08:14:59 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:550970</guid><dc:creator>Erwin Ried</dc:creator><description>&lt;p&gt;Very good investigation, I personally do some minor fixes (and cracks) on Windows (only XP for now) with your incredible tools, specially Regmon and Filemon&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#553349</link><pubDate>Wed, 13 Dec 2006 01:29:07 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:553349</guid><dc:creator>DL</dc:creator><description>&lt;p&gt;Amazing! I just love your posts...&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#560253</link><pubDate>Sun, 17 Dec 2006 14:09:50 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:560253</guid><dc:creator>Jo</dc:creator><description>&lt;p&gt;Can't they just make it on another thread so that window would work normally and second thread would connect to domain and get names?&lt;/p&gt;
&lt;p&gt;Threads! Windows really needs threads. &lt;/p&gt;
&lt;p&gt;The same goes to connecting to computer on network - if here is delay on connect whole explorer hangs... if it would be on thread it would work great.&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#575346</link><pubDate>Sun, 31 Dec 2006 12:05:35 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:575346</guid><dc:creator>micaman</dc:creator><description>&lt;p&gt;Thanks for explaining the process in such detail. It allowed me to find where I was making a few mistakes performing this task. I am thankful that you take the time to post your work. &lt;/p&gt;</description></item><item><title>Use NewSID on cloned virtualised machines</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#607702</link><pubDate>Wed, 24 Jan 2007 22:21:25 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:607702</guid><dc:creator>The Electric Wand</dc:creator><description>&lt;p&gt;I came across a problem recently when a colleague was building a virtual Windows Server environment,&lt;/p&gt;
</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#611500</link><pubDate>Sat, 27 Jan 2007 10:26:41 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:611500</guid><dc:creator>micaman</dc:creator><description>&lt;p&gt;Maybe Microsoft will allow you to build a tool to fix this problem sooner than Vista SP1? &lt;/p&gt;
&lt;p&gt;Keep up the GREAT work!&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#643675</link><pubDate>Thu, 15 Feb 2007 12:20:11 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:643675</guid><dc:creator>Christian Kaiser</dc:creator><description>&lt;p&gt;One thing I noted, apart from the whole problem of delay, and I write it very carefully: there is at least some MS source code that is not reviewed by a second person. &lt;/p&gt;
&lt;p&gt;Look at the misspell error &amp;quot;FileSystem/bowser&amp;quot;, which a code review should have found esily. Some Windows APIs and other symbol files reveal the same problem.&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#653696</link><pubDate>Tue, 20 Feb 2007 14:18:15 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:653696</guid><dc:creator>King Kevin</dc:creator><description>&lt;p&gt;Mark - I have a similar problem, but they NEVER let me File&amp;gt;Open. It freezes up the prog, and no domain controller in site. &lt;/p&gt;
&lt;p&gt;Any ideas?&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#666974</link><pubDate>Thu, 01 Mar 2007 19:57:10 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:666974</guid><dc:creator>Andrew</dc:creator><description>&lt;p&gt;I agree that this is annoying...but have any of you worked on OS X, especially anything prior to 10.4?&lt;/p&gt;
&lt;p&gt;Apple has done the same stupid stuff. &amp;nbsp;I know this is an MS thread and that just because another company does the same dumb things is not at all a justification for another's behavior.&lt;/p&gt;
&lt;p&gt;However, we should be demanding better quality for these simple user experience issues from all of our prefered OS vendors or open-source developed OS's.&lt;/p&gt;
&lt;p&gt;These sorts of &amp;quot;shell&amp;quot; issues seem to permeate all of them.&lt;/p&gt;
&lt;p&gt;It's like the devs are so pressured / focused to just &amp;quot;get it out the door&amp;quot; that these sorts of bugs are sorted at the bottom on a .Zero release...to be &amp;quot;maybe&amp;quot; fixed in the .One (i.e. SP1 or 10.x).&lt;/p&gt;
&lt;p&gt;My 2 cents,&lt;/p&gt;
&lt;p&gt;~Andrew&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#697028</link><pubDate>Sat, 17 Mar 2007 00:32:13 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:697028</guid><dc:creator>Jonathan</dc:creator><description>&lt;p&gt;Part of the problem as I see it is that the function to search for a domain controller has an inherent timeout of 30 seconds (or so). This delay is necessary, to avoid problems in the situation where a domain controler IS available but across a WAN link, and NetBIOS browse lists must be replicated. If the domain controller is not listed in the local browse master's browse list, then the domain controller must be discovered by broadcast; this can take time especially over a slow WAN link. ddebug, this is why your suggestion is not feasible: a short timeout is insufficient to determine the domain is indeed unavailable.&lt;/p&gt;
&lt;p&gt;The security model of Windows favors contacting a domain controller if available, to verify updates to security acocunts, policy, etc. Ultimately, a domain member that is disconnected from the domain is operating in a lower security mode, as security cannot be verified against the security authority, the domain controller.&lt;/p&gt;
&lt;p&gt;By default (at least in XP and earlier), a domain member will only permit 10 sequential logins against cached credentials before a domain controller can be contacted (this can be changed, to a maximum of 50, by policy).&lt;/p&gt;
&lt;p&gt;Really, the solution is to make eye candy low priority, so it cannot &amp;quot;lock up&amp;quot; the system. Display &amp;quot;ugly&amp;quot; information if necessary, then update it when the &amp;quot;pretty&amp;quot; information becomes available, as suggested by Foolhardy. Hopefully this will be a Vista SP1 fix.&lt;/p&gt;</description></item><item><title>
		  Back on XP &amp;laquo; Deep Fried Tech	</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#709149</link><pubDate>Tue, 27 Mar 2007 02:46:42 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:709149</guid><dc:creator>
		  Back on XP « Deep Fried Tech	</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://www.lockergnome.com/nexus/deepfriedtech/2007/03/26/back-on-xp/"&gt;http://www.lockergnome.com/nexus/deepfriedtech/2007/03/26/back-on-xp/&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>Vista File Open Dialogs--GUI hang even on DC's LAN</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#719185</link><pubDate>Sat, 31 Mar 2007 07:28:17 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:719185</guid><dc:creator>A7</dc:creator><description>&lt;p&gt;The problem seems to be even worse that you suspect because we have test systems continuously connected to a Windows 2003 R2 domain and on the same gigabit LAN as the DC itself.&lt;/p&gt;
&lt;p&gt;On at least one test system, and for reasons that we are unable to decipher, the file dialog hang and general file operation GUI hang happens all the time. Domain access at the same moment is excellent. We can even have a high-speed file transfer copying data to or from the DC at the same moment that another of the endless GUI hangs occurs because a file dialog or file browsing window has been opened.&lt;/p&gt;
&lt;p&gt;Vista is so rotten in its initial release that we have scuttled all roll-outs for customers until these major bugs are fixed. Many have heard about these terrible defects independently and their opinion of Microsoft is at all-time lows. &lt;/p&gt;
&lt;p&gt;We don't sell Linux systems, so this leaves us having to continue pushing XP out the door. We couldn't be more disgusted.&lt;/p&gt;</description></item><item><title>fix by removing Vista systems from domains</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#719993</link><pubDate>Sat, 31 Mar 2007 19:35:32 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:719993</guid><dc:creator>A7</dc:creator><description>&lt;p&gt;For Vista systems exhibiting this bug in its various forms, we have found that the only viable solution is to remove them from their respective domains and limp along in workgroup mode.&lt;/p&gt;
&lt;p&gt;An earlier post 'forgave' the GUI dev teams for using calls to synchronous functions that might cause blocking.... but we don't because completely unnecessary blocking problems still exist in far too many products.&lt;/p&gt;
&lt;p&gt;A case in point is the MS SQL client for Win Mobile which locks up as users roam their wireless network because it can't live with any packet loss... &amp;nbsp;or Office Outlook that still after all these years is chock full of UI stalls due to background processing.&lt;/p&gt;
&lt;p&gt;Microsoft needs a top-to-bottom search-and-destroy program for all the childish &amp;nbsp;blocking-prone design flaws that still exist in so many of its products. The problem is at least as destructive to information worker efficiency as all of the malware problems put together.&lt;/p&gt;
&lt;p&gt;Blocking problems equal instability.&lt;/p&gt;
&lt;p&gt;For most users, they perceive the blocking as a severe system failure or malware infestation.&lt;/p&gt;
&lt;p&gt;For the real-time environments that we implement, systemic blocking problems are a deal-breaker.&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#732341</link><pubDate>Sat, 07 Apr 2007 04:21:40 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:732341</guid><dc:creator>DjNikos</dc:creator><description>&lt;p&gt;How come this bug isn't reported in any Vista kb (knowledge base) articles? If it is can someone please point it out to me?&lt;/p&gt;
&lt;p&gt;As a network administrator I've had to set a policy of banning Vista in any form on our network because of this, and pointing my users to this issue is enough to stop them requesting vista at all.&lt;/p&gt;
&lt;p&gt;C'mon MS get a hotfix out, this is ridiculous.&lt;/p&gt;
&lt;p&gt;I've had to live with Vista in our network for over 2 months and the only way I can seriously use Vista away from the network on a laptop is to be constantly in VPN. Totally ridiculous.&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#737544</link><pubDate>Mon, 09 Apr 2007 01:20:55 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:737544</guid><dc:creator>mrockman</dc:creator><description>&lt;p&gt;Delayed application opening is one of many odd behaviors exhibited by Windows. &amp;nbsp;Windows is an enormous machine with many inter-related moving parts, that interact is ways that are emphatically not obvious to the casual observer let alone the highly trained expert. &amp;nbsp;The drive to innovate has lead to increasing complexity which is the mother of unintended consequences and unforeseen circumstances. &amp;nbsp;I've just installed Windows XP SP2 into a reformatted partition for reasons too silly to convey here. &amp;nbsp;When I click Computer, Windows Explorer opens and the flashlight icon animates for up to 2 minutes before displaying anything useful. &amp;nbsp;I've tried removing and reinstalling the computer in its domain to no effect. &amp;nbsp;One could descend into a pit of melancholy over this sort of thing. &amp;nbsp;&lt;/p&gt;</description></item><item><title>Windows Vista langsom ved "File Open" dialog</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#749931</link><pubDate>Wed, 11 Apr 2007 18:44:03 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:749931</guid><dc:creator>TM</dc:creator><description>&lt;p&gt;Jeg har haft et &amp;quot;stort&amp;quot; problem med at hver gang jeg &amp;#229;bner &amp;quot;My Computer&amp;quot; eller andre &amp;quot;File Open&amp;quot; dialogbokse.&lt;/p&gt;
</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#790354</link><pubDate>Thu, 19 Apr 2007 13:02:24 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:790354</guid><dc:creator>Woman</dc:creator><description>&lt;p&gt;And they wonder why Linux is getting more audience by the day.&lt;/p&gt;
&lt;p&gt;For one it provides control to avoid disasters that plague the entire OS, explorer/shell, IE, all the way up to new server software.&lt;/p&gt;
&lt;p&gt;Even if you run in Workgroup mode you will see issues similar to this. &lt;/p&gt;
&lt;p&gt;It has been a decade of this mess.&lt;/p&gt;
&lt;p&gt;The OS still has irresponsive behaviour (even W2003 R2 SP2 on most recent, blast of the hardware).&lt;/p&gt;
&lt;p&gt;Block, sync, block, RPC, block, shell block, block, block DNS, block block AD, block, block MQ, block, block on large file ops, block, block, thrash pages, block.&lt;/p&gt;
&lt;p&gt;Out of this world.&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#810165</link><pubDate>Mon, 23 Apr 2007 21:24:44 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:810165</guid><dc:creator>Cheaha</dc:creator><description>&lt;p&gt;Please someone report this issue to Microsoft so that a fix can be made. &amp;nbsp;It is simple too severe a bug to let it go. &amp;nbsp;Domain installations of Vista have come to a virtual standstill b/c of this issue. &amp;nbsp;I too am seeing the delay on systems connected to the domain 100% of the time (after exactly 30 minutes). &amp;nbsp;&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#838355</link><pubDate>Sat, 28 Apr 2007 12:45:28 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:838355</guid><dc:creator>Patrick Weichmann</dc:creator><description>&lt;p&gt;I am now working since November with Vista Enterprise Edition and it is really frustrating.&lt;/p&gt;
&lt;p&gt;I open about 200 times in a couple of hours an explorer window and almost always I have very long delays before I can work again.&lt;/p&gt;
&lt;p&gt;I am usually working many hours a day not connected to the domain. But I cannot work this way, so I installed vmware workstation and built a nice windows xp machine and run that thing in full screen mode.&lt;/p&gt;
&lt;p&gt;Boy is that fast compared to Vista. I can only hope that they get to their wits and fix this immediately. Make vista fast, very fast. It should be anyways.&lt;/p&gt;
&lt;p&gt;Also the networking configuration is very bad. I have to switch networks many times 20 - 40 times a day and the wireless network card does not always work the way it should and I have to restart many times.&lt;/p&gt;
&lt;p&gt;Usually I use netsh but even with netsh it does not work.&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#866848</link><pubDate>Wed, 02 May 2007 16:37:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:866848</guid><dc:creator>Craig Matthews</dc:creator><description>&lt;p&gt;The fact that this type of systemic problem still exists is even more upsetting in light of the fact that Microsoft is spending their time on things like voice recognition, as if we're supposed to believe we live in the 23rd Century, when at the same time we can't get file open dialog boxes to open or even copy files to a network share within a reasonable time frame.&lt;/p&gt;
&lt;p&gt;And they think it's time for me to talk to my computer?&lt;/p&gt;
&lt;p&gt;The basics need to be fixed, sorry.&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#1150090</link><pubDate>Tue, 05 Jun 2007 12:28:28 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:1150090</guid><dc:creator>AndyB</dc:creator><description>&lt;p&gt;I suppose bugs do happen, and they could be much reduced if the development teams at MS had to use the system the way the rest of us do. If 1 employee had a laptop that was disconnected occasionally instead of them all having super-fast multi-core CPUs, fully-loaded with ram, and fast well-designed networks then we'd have a lot fewer of these bugs. &lt;/p&gt;
&lt;p&gt;That said, what could be done - the simple answer is async lookups for all network operations for the GUI, and much less of them. I pray that this would take top priority at MS for the shell team.&lt;/p&gt;
&lt;p&gt;What *will* be done? I hope its not a quick bodge that only papers over this bug while we wait for the next one like it to appear.&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#1494399</link><pubDate>Tue, 10 Jul 2007 17:12:40 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:1494399</guid><dc:creator>Kevin Reeuwijk</dc:creator><description>&lt;p&gt;I can confirm that this problem has been fixed in Vista SP1. It's also been fixed in Longhorn Server Beta 3. I ran LH Beta3 for a while, just because it didn't have those extremely annoying delays. Now with Vista SP1, life is great again :-)&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#1508003</link><pubDate>Thu, 12 Jul 2007 16:51:37 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:1508003</guid><dc:creator>shrike64</dc:creator><description>&lt;p&gt;Excellent detective work and very informative. &amp;nbsp;I've just set up my new Vista laptop, and I have it joined to my work domain. &amp;nbsp;I'm seeing this delay both in file open/save dialogs, but also in the starting of some applications (I assume they are doing something with the file dialog on startup?) &amp;nbsp;It's very frustrating to hear that I'll have to live with this issue until at least November. &amp;nbsp;I guess I should have known better than to get my computer with Vista, but I'm eager to start working with it so that I can support it. &amp;nbsp;Such is life, I guess... &amp;nbsp;I guess I can try to see what I need to do to get my hands on the SP1 beta.&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#1521697</link><pubDate>Sat, 14 Jul 2007 22:44:02 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:1521697</guid><dc:creator>Julian Eli Capata</dc:creator><description>&lt;p&gt;I'm not a computer tech, still using dBase III, linked to Access, so my clerks can get my data base(s) up &amp;amp; running, but had my old computer with XP on it fixed so that I can get my work out. &amp;nbsp;No new computer &amp;nbsp;purchased until either Vista is fixed or we decide to go to Linux systems -- it has to be better!&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#1558850</link><pubDate>Thu, 19 Jul 2007 19:02:35 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:1558850</guid><dc:creator>Daniel</dc:creator><description>&lt;p&gt;Same with me. It happens to almost EVERY application I try. It takes up 50% of my CPU each time.&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs - one year later</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#2093124</link><pubDate>Tue, 02 Oct 2007 17:30:19 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:2093124</guid><dc:creator>Gudrun Haus</dc:creator><description>&lt;p&gt;Almost a year has passed, and we still struggle with this problem. When are Microsoft going to fix this? And why is SP1 taking so long?&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#2198491</link><pubDate>Thu, 18 Oct 2007 17:20:44 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:2198491</guid><dc:creator>Carson</dc:creator><description>&lt;p&gt;Last week (October 2007) I set up a brand new Asus (Turion-60 AMD 64 dual-core with 2 gigs of RAM) in Vista. I've used computers since 1987, and I'm a skilled end-user with XP. I was horrified by Vista's slow speed, which reduced this beautiful new computer to being little better than my own ancient Celeron 1.7 with its 128 kb L2 cache. Yes, really; the new machine was a lot smoother, but little faster, crippled by move and copy (and sometimes by rename and delete).&lt;/p&gt;
&lt;p&gt;I had all the updates and patches to date, and every tweak I could find on the internet.&lt;/p&gt;
&lt;p&gt;I regularly move files over a gig. I don't open a second window; I use &amp;quot;move to&amp;quot; and &amp;quot;copy to&amp;quot; all the time. I don't even think about it -- I don't have to.&lt;/p&gt;
&lt;p&gt;Well, my experience was so horrifying that I put Vista onto my own machine to test it further. I allowed for my slow L2. The faster machine had rated 4.7, and my slow one rated just 2.5, but the results were pretty close. On mine, I could take more chances experimenting. &lt;/p&gt;
&lt;p&gt;Then I reformatted and returned to XP. I needed to. I needed basic competency with the most basic of file operations. &lt;/p&gt;
&lt;p&gt;Today, for example, I shall need to move a 4.2 gig file around a bit. In fact, it's a file I'm getting entirely as a result of my rather horrifying experience with Vista. Thank goodness I have XP to handle it. &lt;/p&gt;
&lt;p&gt;The file is Ubuntu 7.10.&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#2260935</link><pubDate>Sat, 27 Oct 2007 07:00:34 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:2260935</guid><dc:creator>Dody Suria Wijaya</dc:creator><description>&lt;p&gt;You can fix this temporarily without SP1 by disabling NBT (NetBIOS of TCP/IP):&lt;/p&gt;
&lt;p&gt;(1) Open you network card properties. &lt;/p&gt;
&lt;p&gt;(2) Select Internet Protocol Version 4 (TCP/IPv4), click Properties.&lt;/p&gt;
&lt;p&gt;(3) Click Advanced, select WINS tab, select Disable NetBIOS over TCP/IP.&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#2260963</link><pubDate>Sat, 27 Oct 2007 07:05:45 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:2260963</guid><dc:creator>Dody Suria Wijaya</dc:creator><description>&lt;p&gt;You can fix this temporarily without SP1 by disabling NBT (NetBIOS of TCP/IP):&lt;/p&gt;
&lt;p&gt;(1) Open you network card properties. &lt;/p&gt;
&lt;p&gt;(2) Select Internet Protocol Version 4 (TCP/IPv4), click Properties.&lt;/p&gt;
&lt;p&gt;(3) Click Advanced, select WINS tab, select Disable NetBIOS over TCP/IP.&lt;/p&gt;
&lt;p&gt;This will force vista looking for domain control through DNS query, which should respond quickly than NetBIOS.&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#2330959</link><pubDate>Sun, 04 Nov 2007 21:26:13 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:2330959</guid><dc:creator>Mohmammad Husseini</dc:creator><description>&lt;p&gt;Finaly a great solution by Dody Suria Wijaya&lt;/p&gt;
&lt;p&gt;Thank so much, all my Networked Vista altima stations are running great now &lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#2348975</link><pubDate>Tue, 06 Nov 2007 16:48:47 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:2348975</guid><dc:creator>Khuzema</dc:creator><description>&lt;p&gt;Even on network with domain controller on my Vista system its taking too much time. Before looking on internet my first understanding was my machine got infected either with viruses or spyware. Had to waste lots of time. And then I came across this post.&lt;/p&gt;
&lt;p&gt;Microsoft marketing for Vista went from very aggressive to level of unethical, to push it on people.&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#2352923</link><pubDate>Wed, 07 Nov 2007 02:45:38 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:2352923</guid><dc:creator>Marty Jay</dc:creator><description>&lt;p&gt;Honestly, could Microsoft not make a patch for this? I am quite happy using XP and Linux (Debian), but a friend of mine bought a new computer with Vista and it is just unworkable. Since he can't go back and use XP, he might be forced to use some Linux version. At least there are always free and easy solutions for problems... &amp;nbsp;nowadays free is definitely better for some purposes...&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#2488743</link><pubDate>Sat, 17 Nov 2007 21:10:52 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:2488743</guid><dc:creator>scolombo</dc:creator><description>&lt;p&gt;I run vista ultimate on a notebook which is not joined to any domain and experiencing the same problem , long delay on &amp;quot;file open/save &amp;quot; box operation.&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#2519358</link><pubDate>Mon, 19 Nov 2007 16:57:09 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:2519358</guid><dc:creator>Frisky</dc:creator><description>&lt;p&gt;This is great information Mark. However, I have a domain on an old Windows 2000 Server in my home. The Active Directory has crashed on it, and I am going to have to rebuild the domain. But, the real problem is that while this is a brand new dual core laptop that runs everything super fast, if I so much as use an open file dialog I get a delay of no less than 5 Minutes and usally greater than 10 Minutes. Yes, I have actually timed at, and until it became so common, was keeping a log with the times. I don't recall this problem before my domain crashed. I would love to just switch over to a standard user account, but, then my profile is abandoned, and I have to create all my new profile information from scratch.&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#2558421</link><pubDate>Sun, 25 Nov 2007 11:20:50 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:2558421</guid><dc:creator>Patrick Anderson</dc:creator><description>&lt;p&gt;Unfortunatelly the solution by Dody Suria Wijaya is not working for me. Still delays up to 30 seconds each time I want to open a folder or save a file, or do a www.cnn.com instead of &lt;a rel="nofollow" target="_new" href="http://www.cnn.com"&gt;http://www.cnn.com&lt;/a&gt;, unless of course I connect to the original domain via VPN.....&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#3001014</link><pubDate>Sat, 15 Mar 2008 06:51:54 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3001014</guid><dc:creator>Jeremy</dc:creator><description>&lt;p&gt;Thought I would mention that disabling NBT makes my Vista machine scream. &amp;nbsp;Works around the File Open/Save delays as well as fixes the requirement to type &amp;quot;http://&amp;quot; before addresses in IE.&lt;/p&gt;
&lt;p&gt;One of these days I'll get around to fixing whatever problem I'm having with my DC, but since this is just my home network, and it lets me on the internet, get email, and play games, it hasn't been a big priority.&lt;/p&gt;
&lt;p&gt;Thanks Dody!&lt;/p&gt;
&lt;p&gt;Thanks Mark for the EXCELLENT write-up!&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#3067064</link><pubDate>Fri, 06 Jun 2008 18:03:57 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3067064</guid><dc:creator>Luciano Schaper</dc:creator><description>&lt;p&gt;I had this problem recently, and reading some forums, I remember I have a dns problem and settled the domain to be settled automatically, so if you are using a domain, try to set it manually.&lt;/p&gt;
&lt;p&gt;hope it helps...&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#3111249</link><pubDate>Mon, 25 Aug 2008 02:39:22 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3111249</guid><dc:creator>Doug Lennox</dc:creator><description>&lt;p&gt;This problem persists through to SP1 and all fixes to dates. None of the suggested fixes (and I've tried them all) make any difference apart from the option of changing to a Workgroup.&lt;/p&gt;
&lt;p&gt;Strangely many Vista PC's work OK on domains that we support, but the odd one such as vista-pc.lennox.com.au on our own domain has been been completely recalcitrant.&lt;/p&gt;
&lt;p&gt;I suspect that that is because our domain has many PC's coming and going all the time, and there will always be a few computer names non-responding.&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#3142213</link><pubDate>Mon, 27 Oct 2008 00:52:38 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3142213</guid><dc:creator>Alpharat</dc:creator><description>&lt;p&gt;Yes, this is a terrible thing. I am abandoning Vista because this latency issue is so bad. I gave Vista a chance, but if this problem is so deep in the OS, and SP-1 did NOT fix it, then goodbye Vista..this might even drive me away fro Microsoft entirely, either to MacOS or Ubuntu..uuuggghhh..&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#3158415</link><pubDate>Mon, 24 Nov 2008 03:59:10 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3158415</guid><dc:creator>Glenn</dc:creator><description>&lt;p&gt;I'm getting same problem and it is so annoying I have installed an ripped off copy of XP. If MS try to sue I will just state I am running it until they fix the faulty product they are selling that is not fit for purpose.&lt;/p&gt;
&lt;p&gt;Patch please!&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#3158419</link><pubDate>Mon, 24 Nov 2008 04:19:23 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3158419</guid><dc:creator>Glenn</dc:creator><description>&lt;p&gt;I don't login to a domain. I use my laptop mainly at home but at work connect to a printer, and two files shares using connect as...&lt;/p&gt;
&lt;p&gt;However I still get this problem and need to reboot every 30mins to get any work done. Hence move back to XP&lt;/p&gt;</description></item><item><title>This also applies to Win XP (at least for me)</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#3163314</link><pubDate>Wed, 03 Dec 2008 15:42:12 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3163314</guid><dc:creator>Uwe Jugel</dc:creator><description>&lt;p&gt;I have a similar problem under my corporate &amp;nbsp;Windows XP (SP2) with several file-open/save dialogs.&lt;/p&gt;
&lt;p&gt;broken file-open in:&lt;/p&gt;
&lt;p&gt;- Notepad, Notepad++, Freemind, Firefox, IE6&lt;/p&gt;
&lt;p&gt;not broken in:&lt;/p&gt;
&lt;p&gt;- Office 2007 (Word, Outlook, ...)&lt;/p&gt;
&lt;p&gt;Could this be related?&lt;/p&gt;</description></item><item><title>re: The Case of the Delayed Windows Vista File Open Dialogs</title><link>http://blogs.technet.com/markrussinovich/archive/2006/11/27/532465.aspx#3207180</link><pubDate>Fri, 27 Feb 2009 00:57:15 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3207180</guid><dc:creator>Richard</dc:creator><description>&lt;p&gt;Finally a great solution by Richard&lt;/p&gt;
&lt;p&gt;Thank so much, the mysterious slow accounts section with all their Networked Vista accounting software stations are running properly in fact Great.&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;Richard&lt;/p&gt;</description></item></channel></rss>