Asked by:
Cannot Join Small Business Server 2003 with Windows 10 because it returns with this long explantion:

Question
All replies
-
-
hi,
SMB 1 should be enabled by default but it won`t be used if SMB2.0 or SMB 3.0 is available.
we could try to disable SMB 2.0 and SMB3.0 to force the Windows 10 machine to use SMB 1.0 to access SBS2003.Windows 8.1 and Windows 10: PowerShell (open as administrator)method
SMB v1 Protocol
Detect: Get-WindowsOptionalFeature –Online –FeatureName SMB1Protocol
Disable: Disable-WindowsOptionalFeature -Online -FeatureName SMB1Protocol
Enable: Enable-WindowsOptionalFeature -Online -FeatureName SMB1ProtocolSMB v2/v3 Protocol
Detect: Get-SmbServerConfiguration | Select EnableSMB2Protocol
Disable: Set-SmbServerConfiguration –EnableSMB2Protocol $false
Enable: Set-SmbServerConfiguration –EnableSMB2Protocol $trueHere is a link for your reference:
How to enable and disable SMBv1, SMBv2, and SMBv3 in win10
https://support.microsoft.com/en-sg/kb/2696547
Please remember to mark the replies as answers if they help.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.- Edited by Andy YOUMicrosoft contingent staff Friday, November 9, 2018 7:30 AM
- Proposed as answer by Andy YOUMicrosoft contingent staff Tuesday, November 20, 2018 8:17 AM
-
Is there any progress on your question?
Please remember to mark the replies as answers if they help.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com. -