4

I have two Windows Server 2008 SP2 machines (TFS and TFSBUILD). Periodically, the TFSBUILD server shares (\TFSBUILD\ShareName or \TFSBUILD\C$) become unresponsive to requests from Windows Vista (Server 2008) and Windows 7 client requests. Windows XP machines are still able to connect.

No events in the server log indicate any problem. A simple restart corrects the issue temporarily, but it always returns.

It is not this http://support.microsoft.com/kb/948732 (we aren't using that software).

This does not appear to be an issue with SMB 2.0. Per @Maxwell I tried disabling it on the server and on the Windows 7 and Vista stations:

sc config lanmanworkstation depend= bowser/mrxsmb10/nsi
sc config mrxsmb20 start= disabled

All anti-virus software has been disabled, firewall is disabled by policy. No other network activity is affected.

The TFSBUILD server is a virtual, running under Hyper-V (x86 guest on an x64 host). The host has the same OS version and SP.

Any help would be greatly appreciated.

4 Answers4

2

Maybe this has something to do with SMB 2.0, you could try disabling it on the server and on the Windows 7 and Vista stations:

sc config lanmanworkstation depend= bowser/mrxsmb10/nsi
sc config mrxsmb20 start= disabled

You may also want to read this article at petri.co.il

This may be a workaround...

Maxwell
  • 5,076
  • 1
  • 26
  • 31
0

There seems to be a somewhat related question here. One answer that sticks out is to check the "File and printer Sharing for Microsoft Networks" option on the network adapters. However, this would likely cause it to never work, not stop working after a while.

I'd suggest you get Wireshark on the server and start a trace of the network traffic. Check to see what it looks like when XP clients connect to a share, and when the Win7/Vista clients connect (both when it works and after it stops working). Hopefully you'll find some obvious missing piece when it's not working that can help lead to the actual cause.

Paul Kroon
  • 2,250
  • 1
  • 16
  • 20
  • You're right - if F&P sharing wasn't installed it wouldn't work at all. Already installed Wireshark. I'll post traces of working/non-working soon. – Peter T. LaComb Jr. Jun 07 '10 at 15:30
  • Most av software isn't really disabled until you uninstall it! I'm pretty sure this is true for mcafee not sure of others. – tony roth Jun 07 '10 at 21:32
0

hm. can you disable/remove IPv6 and all others unnecessary filters/services on TFS/TFSBUILD servers ?

you can look at WinXP network configuration to decide what to disable ...

evg345
  • 384
  • 1
  • 4
0
sc config lanmanworkstation depend= bowser/mrxsmb10/nsi
sc config mrxsmb20 start= disabled

You also need to put in the reg key on the server to disable SMB2. Then you will need to reboot the server and all your clients.

DrZaiusApeLord
  • 1,174
  • 2
  • 9
  • 18