How to disable SMB3 in Windows 10
The SMB2 and / or SMB3 protocols are enabled by default in Windows. If you need, here are the steps to disable SMB2 and SMB3 in Windows.
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
You should read it
- How to disable the Insert key in Windows 10
- Disable Windows 10 keyboard in 5 simple ways
- 3 How to disable BitLocker in Windows 10
- On Windows 10 you should disable these features
- How to disable iphlpsvc in Windows 10
- How to disable keyboard shortcuts and hotkeys on Windows 10
- How to disable USB ports on Windows, Mac and Linux
- Turn off Windows Defender on Windows 7 and Windows Vista
May be interested
- How to Disable Internet Connection (Windows)this wikihow teaches you how to disable any internet connection on your windows pc. if you're using windows 10 or 8, you can quickly disable all internet access by turning on airplane mode. for a longer-term solution, you can disable your...
- Disable UAC in Windows 7as you know, uac is an available feature in windows that prevents unwanted changes on your computer, helping to protect your computer better. however sometimes the annoyance caused by it causes the user to be annoyed and just want to remove it.
- How to disable Windows Registry on Windows 10the windows registry is one of the most important tools in windows 10. since it can profoundly change the way your operating system works, allowing every user on your pc to access it isn't a big deal. good opinion.
- How to turn off Hyper-V on Windows 10, disable Hyper-Vhyper-v is a useful feature, but if you don't use it you can disable it to avoid security risks.
- How to disable the Caps Lock key in Windows 10windows doesn't offer any easy to find or use options to disable the caps lock key. however, by using free software like autohotkey or registry tricks, you can disable the caps lock key on windows 10.
- How to disable GeForce overlay on Windowsoverlay is a pretty popular feature these days. almost every game application, game launcher and graphics card software offers an overlay option. but not all gamers need to install the overlay that appears every time the game is launched.
- How to Disable Windows 7 Firewallthere are many different reasons why you might want to disable the built-in windows firewall, whether that is testing a program, installing alternative firewall software, or anything else. fortunately, it's pretty simple to disable it with...
- Turn off Windows Defender on Windows 10how to completely disable windows defender on windows 10? there are several ways to turn off windows defender on windows 10, please see the detailed instructions below.
- How to disable 1 or more any key on Windows 10 keyboard?for some reason you want to disable (disable) one or more of any keys on the windows keyboard, but don't know how to do it. normally to disable some basic keys like windows logo, you can use group policy, but for other keys it cannot be disabled with group policy.
- How to automatically disable Touchpad when connecting a mouse on Windows 10in some cases when using a bluetooth mouse or a wired mouse on a windows laptop, the touchpad mouse seems to be overflowing and annoys the user if accidentally touched. fortunately, however, there is a simple setting that allows windows to automatically disable the touchpad as soon as the mouse is connected to the computer.