It sounds like you're experiencing persistent issues with mapped drives and network shares in a peer-to-peer (P2P) environment, particularly after Windows updates. Here are some steps you can take to troubleshoot and potentially resolve the issue:
- Check Network Settings: Ensure that all computers are on the same network and that network discovery is enabled. You can do this by going to Settings > Network & Internet > Status > Network and Sharing Center > Change advanced sharing settings.
- Disable SMBv1: Since you mentioned issues related to SMBv1, ensure that it is disabled. You can do this by going to Control Panel > Programs > Turn Windows features on or off and unchecking SMB 1.0/CIFS File Sharing Support.
- Adjust Autodisconnect Settings: The default timeout for network connections can lead to disconnections. You can increase the timeout period for the autodisconnect feature of the Server service. Open a command prompt and run:
This sets the timeout to 30 minutes. You can adjust the number as needed, up to 65,535 minutes.net config server /autodisconnect:30 - Registry Changes: If the above does not work, consider adjusting the registry settings for autodisconnect and KeepConn as follows:
- Navigate to
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\lanmanserver\parametersand set autodisconnect to a higher value or create it if it doesn't exist. - For client-side settings, navigate to
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\lanmanworkstation\parametersand set KeepConn to a higher value (in seconds).
- Navigate to
- Recreate Mapped Drives: If you're still having issues, try removing the mapped drives and recreating them. Ensure that you have the correct permissions and that the shared folders are accessible.
- Check for Windows Updates: Sometimes, specific updates can cause issues with network connectivity. Ensure that your system is fully updated and check for any known issues with the updates you have installed.
- Firewall and Antivirus Settings: Ensure that your firewall or antivirus software is not blocking the connections. Temporarily disable them to see if that resolves the issue.
- Event Viewer: Check the Event Viewer for any error messages related to network connections or SMB. This can provide more insight into what might be going wrong.
If these steps do not resolve the issue, you may need to consider contacting Microsoft support for more specialized assistance.
References: