Web Sponsored

Sign up for PayPal and start accepting credit card payments instantly.

Wednesday, April 7, 2010

Speeding Up Network Browsing

There are a lot of things which can negatively impact how fast XP will browse network shares.
One has been previously covered regarding browsing to Win9x computers.
Other things you can try, especially when there is slow browsing to network shares with a lot of files:
1. Remove current shortcuts in My Network Places
2. Change the registry so shared folders on remote computers are not automatically added to My Network Places when you even open a document from that shared folder
1. Start Regedit
2. Create a DWORD value:
3.
Code:
HKEY_Current_User \ Software \ Microsoft \ Windows \ CurrentVersion \ Policies \ Explorer \ NoRecentDocsNetHood to 1.

4. I have also seen setting the following help as well.
Code:
HKEY_Current_User \ Software \ Microsoft \ Windows \ CurrentVersion \ Policies \ Explorer \ UseDesktopIniCache to 1.

Reg file to do both
Windows Registry Editor Version 5.00

Code:
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\Explorer]
"UseDesktopIniCache"=dword:00000001
"NoRecentDocsNetHood"=dword:00000001

________________________________________

3. Increase the amount of data is buffered at one time to send to a client. On the computer with the shared directory:
1.Start Regedit
2.Goto
Code:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters

3.Create a DWORD Key called SizReqBuf
4.Give it a value of Hex FFFF
Reg file
Windows Registry Editor Version 5.00

Code:
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\lanmanserver\parameters]
"SizReqBuf"=dword:0000ffff


Code:
http://support.microsoft.com/?kbid=320829

No comments:

Post a Comment