Table of Contents
This updated guide explains how to Disable SMB3 in Windows 10 through clear steps, practical examples, and important checks that help prevent common errors.
Note : SMB2 and SMB3 are linked to each other. So enabling or disabling SMB2 will result in the same thing for SMB3.
To disable SMB3, you can use PowerShell or Command Prompt. Make it the way you feel more comfortable.
Disable SMB3 Via PowerShell (Recommended)
1. Open PowerShell with admin rights.
2. Next, verify that SMB3 is enabled by executing the command below. If the protocol is enabled, you will see "true" in the response.
Get-SmbServerConfiguration | Select EnableSMB2Protocol
3. To turn off SMB3, execute this command.
Set-SmbServerConfiguration -EnableSMB2Protocol $false
4. PowerShell will ask for your confirmation, type Y or A and press Enter to confirm.
5. When disabled, you can verify it by executing the first command. If the protocol is disabled, you will see "false".
6. Finally, restart Windows to apply the changes.
To reactivate SMB3, you can use the command below.
Set-SmbServerConfiguration -EnableSMB2Protocol $true
Disable SMB3 Via the Command Prompt
You can also use the Command Prompt to disable SMB3. The only problem is that it's not as intuitive as the PowerShell method, but it works anyway.
1. Run Command Prompt with admin rights.
2. In the Command Prompt window, execute the following commands one after the other.
sc.exe config lanmanworkstation depend= bowser/mrxsmb10/nsi
sc.exe config mrxsmb20 start= disabled
3. When done, restart Windows to apply the changes. After reboot, the SMB3 protocol will be disabled.
To re-enable the SMB3 protocol, open the Command Prompt with admin rights and execute the following commands one after the other.
sc.exe config lanmanworkstation depend= bowser/mrxsmb10/mrxsmb20/nsi
sc.exe config mrxsmb20 start= auto
FAQ
What is the easiest way to Disable SMB3 in Windows 10?
Start with the requirements in this guide, then follow each step in order. Check the result after every major change so problems are easier to identify.
Can beginners follow these instructions?
Yes. The process is organized into practical steps, and you can repeat any step before moving forward.
What should I check if the method does not work?
Confirm your software or device version, permissions, settings, file format, and internet connection when the task depends on online services.
Reader Comments 0
Sign in with email or Google to join the discussion.