Windows 10: Unable to access SMBv1 share
Microsoft announcement of 01.07.2020.
Windows 10 Fall Creators Update and Windows Server, version 1709 (RS3) and later versions, the Server Message Block Version 1 (SMBv1) network protocol is no longer installed by default. The SMBv1 protocol has been replaced by SMBv2 and newer protocols (SMBv3) since 2007. Microsoft publicly rejected the SMBv1 protocol in 2014.
Windows 10 Enterprise and Windows Server 2016 no longer includes the SMBv1 client or SMBv1 server by default after a new installation.
Windows 10 Home and Windows 10 Pro still contain the SMBv1 client by default after a new installation. If the SMBv1 client is not in use for a total of 15 days (except for the computer that is turned off), it is automatically uninstalled.
SMBv1 can still be reinstalled in all editions of Windows 10 and Windows Server 2016.
Enable SMBv1 using the MSC method
The SMBv1 network protocol can be activated on Windows 10 with the Windows + R key and the input of control appwiz.cpl,2 in the Windows Features window.


Open Windows-Features of Windows 10.

Check windows feature with support for SMB 1.0/CIFS file sharing check boxes:
– Automatically remove SMB 1.0/CIFS
– SMB 1.0/CIFS client
The SMB 1.0 client will remain activated as long as it is used, if no activity is detected during the 15 days, SMBv1 will deactivate itself for security reasons.
SMBv1 enable PowerShell method
SMBv1 is enabled in the PowerShell as follows.
1 2 |
PS C:\> Enable-WindowsOptionalFeature -Online FeatureName SMB1Protocol |
Check the status of SMBv1 in the PowerShell.
1 2 |
PS C:\> Get-WindowsOptionalFeature -Online -FeatureName SMB1Protocol |
Disable the SMBv1 network protocol in the PowerShell.
1 2 |
PS C:\> Disable-WindowsOptionalFeature -Online FeatureName SMB1Protocol |
The computer must be restarted after these changes are made.