Forum Discussion
MarcoMangiante
Mar 28, 2018Iron Contributor
Windows Server 2019 Build 17623 SMB1 does no more exists?
Hello,
I tried for a test to enable SMB1 support for the build 17623, but when I give the PowerShell command:
Set-SmbServerConfiguration -EnableSMB1Protocol $true
I have the error:
...
- Mar 28, 2018
Have you installed the 'SMB 1.0/CIFS File Sharing Support' feature?
Spc .
Mar 31, 2018Brass Contributor
You have to install SMB 1.0 support in server manager (add roles and
features). Also guest access is blocked in newer versions of windows 10:
https://support.microsoft.com/sl-si/help/4046019/guest-access-smb2-disabled-by-default-in-windows-10-server-2016
MarcoMangiante
Apr 01, 2018Iron Contributor
Hello,
thanks for your reply and information.
There is a simple command in PowerShell that does the work:
Enable-WindowsOptionalFeature -Online -FeatureName smb1protocol
the link is for reference: https://support.microsoft.com/en-ca/help/2696547/how-to-detect-enable-and-disable-smbv1-smbv2-and-smbv3-in-windows-and
I've seen that Microsoft disabled the smb1, if I remember well, in the first iteration of the semi annual edition of Windows Server.
- Eric LevinsonSep 30, 2019Copper Contributor
MarcoMangianteHere's possibly a silly question - I only want to enable the SMB 1.0 client on this server. I don't want to enable SMB 1.0 server. My goal is to grab files from a Windows 2003 server, and then turn off the client - however I don't want SMB1.0 shares to be exposed from the Windows 2019 server I am working on.
Is there a way to do this without enabling the entire server?
- Perry_van_VlietFeb 18, 2020Copper Contributor
I have a similar setup, a 2019 server need to map a drive from an AS400 SMBv1 share.
And only want to enable the SMB v1 client part on the 2019 server.
Did you get it to work?