One very common issue is mapped drives to network shares automatically disconnecting after a set period of time. The drive will reconnect when you click on it in My Computer, but some applications will error out when it tries to access the disconnected network drive.
This is an easy problem to resolve and we can do it at the command line or in the registry. The command to run is:
net config server /autodisconnect:-1
This disables the autodisconnect "feature" and should be set on the server holding the share. The preferred method is to edit the registry. Open up regedit and browse to:
HKLM\System\CurrentControlSet\Services\LanmanServer\Parameters
Set the REG_DWORD value "autodisconnect" to HEX 0xffffffff. This will disable this feature. You could also specify a length of time before it disconnects. The dword value can be set anywhere from 1 to 65535 minutes.