I had set up my IIS 7 server to look my anonymous Samba share.

The connection between client and server came through fine. When I used IE to look at the root-level directory it was OK, but the files and folders underneath resulted in a 404.

The error was 0x80070002 "The resource you are looking for has been removed, had its name changed, or is temporarily unavailable"

Im new to samba, so everything I was doing was semi-clueless.

Turns out in /etc/samba/smb.conf I had
case sensitive = yes

instead of "no"



[global]
	workgroup = MYGROUP
	guest account = daemon
	log file = /var/log/samba/%m.log
	dns proxy = no
	preserve case = no
	default case = lower
	case sensitive = no

[Develop]
	comment = Develop data
	browseable = yes
	writable = no
	read only = yes
	guest ok = yes
Wednesday, 13-May-2009 14:25:25 EDT
Wednesday, 13-May-2009 14:41:02 EDT