When you lose access to a shared hard drive, it greatly affects data access and collaboration. This guide will introduce a simple solution for Win10 system to help you solve this problem. This article shared by PHP editor Baicao will provide step-by-step instructions to help you easily solve shared hard drive access problems. By understanding the methods in this article, you can restore access to your data, increase productivity, and keep your data secure.
Win10 system cannot access the shared hard disk solution
1. First, we search powershell through the shortcut key combination [win+S], and then find Right-click on powershell to run, remember to select run as administrator, and then enter the code:
SMB v1
Detection: Get-WindowsOptionalFeature –Online –FeatureName SMB1Protocol
Disable : Disable-WindowsOptionalFeature -Online -FeatureName SMB1Protocol
Enable: Enable-WindowsOptionalFeature -Online -FeatureName SMB1Protocol
SMB v2/v3
Detection: Get-SmbServerConfiguration | Select EnableSMB2Protocol
Disable: Set-SmbServerConfiguration –EnableSMB2Protocol $false
Enable: Set-SmbServerConfiguration –EnableSMB2Protocol $true
2. The problem of being unable to share anonymously can be solved by the following method:
First use the shortcut key combination [win+R] to open the run function. Here, enter gpedit.msc in the search box, then confirm to open the Local Group Policy Editor, and select Computer Management- Administrative Templates - Network - Lanman Workstation - Enable Insecure Guest Logins - Enabled.
If it is a home version of the system, you can use a simple registry import method to solve the problem. Use the following code to save it as a reg file and import it:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesLanmanWorkstationParameters]
“AllowInsecureGuestAuth”=dword:00000001
3. After the above operations are completed, you only need to restart the system, and then you can proceed to the shared hard disk Resources to access and view.
The above is the detailed content of What to do if the Win10 system cannot access the shared hard drive_What to do if the Win10 system cannot access the shared hard drive. For more information, please follow other related articles on the PHP Chinese website!