Windows Explorer slow response when disconnect from the network

6

2

As a Systems Admin I have seen this issue repeatedly and it drives me crazy. Basically the problem occurs when you open My Documents or My Computer (Windows Explorer) there is a big delay ranging from 5-25 seconds before it actually opens and shows the content. Sometimes the problem continues with each subfolder you open. The problem is most common when disconnected from the network and when you have mapped drives.

The most common solution for this problem is to disconnect any mapped drives or printers that are discconected/not reaachable. I have also heard that turning off "Automatically search for network folders and printers" can solve this issue but I have yet to see this work.

Does anyone know of any other work arounds for this?

ITGuy24

Posted 2010-04-16T18:34:45.090

Reputation: 264

Answers

4

I found this knowledge base article which supplied a hotfix that corrected the issue. I also found out this fix is included in Windows XP SP3.

This did not solve all cases. I also found out this issue is also often caused by the WIA server. Stopping and disabling it will fix it.

ITGuy24

Posted 2010-04-16T18:34:45.090

Reputation: 264

3You should have originally said that you were on XP SP2. It would have saved us some trouble. – harrymc – 2010-08-09T12:27:49.807

Sorry, like I stated in the original questions I have seen this on a lot of computers and did not put together that it was SP2 exclusive. – ITGuy24 – 2010-08-13T16:04:36.537

1

I experience this a lot as well. It has to do with indexing network directories. If you have a network with hundreds of GB of storage, you will see this often. In XP, it's a bug, and I know Vista and 7 work much better with indexing files. I usually kill the dialog box and open it again. Slow, but it almost always works to get the access I need. I don't find the need to actually disconnect the drives as you say. One other thing that I found helps is always having these directories open for faster access and the ability to transfer files independent of apps that need to save/open. Good luck.

nicorellius

Posted 2010-04-16T18:34:45.090

Reputation: 5 865

1

I had this problem when one of the document icons or shell extensions was registered on a network drive. Check in the registry under HKEY_CLASSES_ROOT if some of registered DLL files are on a mapped drive or on \\server\share\some.dll.

Also check the solution from this question.

Goran Peroš

Posted 2010-04-16T18:34:45.090

Reputation: 136

0

To find out what's going on, use Process Monitor, filter by process name explorer.exe, then look for an operation with a 5-25 second time (should be one of the columns).

Hello71

Posted 2010-04-16T18:34:45.090

Reputation: 7 636

0

This is almost always caused by either hard-coded DNS, network shortcuts in My Network Places, network applications on the start menu, etc.

The default behavior for Windows XP on drive mappings is to attempt to re-connect the drive mappings for what seems to be forever.

Try this:

  • Run gpedit.msc
  • Select Administrative TemplatesSystemLogonAlways wait for the network at computer startup and logon
  • Set to Enabled

Microsoft's help explains:

If you disable or do not configure this setting, Windows does not wait for the network to be fully initialized and users are logged on with cached credentials. Group Policy is applied asynchronously in the background.

Note: If you want to guarantee the application of Folder Redirection, Software Installation, or roaming user profile settings in just one logon, enable this setting to ensure that Windows waits for the network to be available before applying policy.

It must therefore be enabled to avoid background processing that might slow Windows Explorer.

harrymc

Posted 2010-04-16T18:34:45.090

Reputation: 306 093